brew install bison
bison --defines=src/parser.tab.h --output=src/parser.tab.c src/parser.y
flex --outfile=src/lex.yy.c src/lexer.l
cc src/parser.tab.c src/lex.yy.c -o test
./test
bison -d --report=state src/parser.y
cat parser.output | grep conflict
Set %right ASSIGN
back to %token ASSIGN
to generate a conflict.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # Choose 1 when prompted
source $HOME/.cargo/env
cargo build
cargo run