Learning to write compilers Following this tutorial Running Compile cargo run -- test.c > test.s gcc test.s -o test Run and Print Exit Code ./test echo $? Testing Code cargo test or cargo watch -x test to hotreload