run.sh 78 B

1234567
  1. OUT="$(mktemp)"
  2. g++ -o "$OUT" -xc++ -
  3. if [ $? -eq 0 ]; then
  4. exec "$OUT"
  5. fi