run.sh 74 B

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