7 lines
58 B
Bash
Executable File
7 lines
58 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
g++ src/day$1.cpp -std=c++23
|
|
./a.out
|