playground/cpp/cpp.justfile
2024-04-26 20:35:15 +09:00

8 lines
No EOL
150 B
Text

@build-cpp:
g++ ./cpp/a.cpp -o ./cpp/a
@run-cpp: build-cpp
./cpp/a < ./input.txt
@bench-cpp: build-cpp
hyperfine './cpp/a < ./input.txt'