Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 186 Bytes

File metadata and controls

15 lines (11 loc) · 186 Bytes

Snake game

Compile and run

g++ -o snake main.cpp -pthread;
./snake

Run Tests

g++ -o my_tests snake_test.cpp -lgtest -lgtest_main -pthread;
./my_tests