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
./testbison -d --report=state src/parser.y
cat parser.output | grep conflictSet %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