Initial commit

This commit is contained in:
stackclass
2025-08-25 04:51:11 +00:00
commit c9de5ba225
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 "$@"