Language
C++
Compiler
gcc 5.1.0
Options
Warnings
Optimization
Don't Use Boost
C++14
-pedantic-errors
$ g++ prog.cc -Wall -Wextra -O2 -march=native -std=c++14 -pedantic-errors
infix: x+y
postfix: x y +
var: x
var: y
sum(1, 2) = 3
Exit Code:
0
C++
gcc 5.1.0
$ g++ prog.cc -Wall -Wextra -O2 -march=native -std=c++14 -pedantic-errors
infix: x+y
postfix: x y +
var: x
var: y
sum(1, 2) = 3