run.sh 76 B

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