Initial commit

This commit is contained in:
stackclass
2025-08-30 14:57:44 +00:00
commit 974cff50c5
11 changed files with 265 additions and 0 deletions

11
.stackclass/run.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/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 "$@"