6 lines
106 B
Bash
6 lines
106 B
Bash
#!/bin/sh
|
|
SRC=$(ls -t *.cpp | head -1)
|
|
|
|
set -x
|
|
clang -std=c++20 -O2 -pthread -lstdc++ -I. $SRC && ./a.out
|