1 2 3 4 5 6 7 8 9 10
build: mkdir -p build g++ main.cpp -O3 -o ./build/a.out clean: rm -rf build run: just build ./build/a.out