Files
0198fb7b-fd55-7ab2-8277-f3d…/.stackclass/run.sh

12 lines
259 B
Bash
Raw Normal View History

2025-08-30 14:57:44 +00:00
#!/bin/sh
#
# This script is used to run your program on StackClass
#
# This runs after .stackclass/compile.sh
#
# Learn more: https://docs.stackclass.dev/challenges/program-interface
set -e # Exit on failure
exec target/release/stackclass-interpreter "$@"