Initial commit from template

This commit is contained in:
StackClass
2025-08-25 04:50:38 +00:00
commit ea9e361b8f
11 changed files with 265 additions and 0 deletions

11
.stackclass/compile.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
#
# This script is used to compile your program on StackClass
#
# This runs before .stackclass/run.sh
#
# Learn more: https://docs.stackclass.dev/challenges/program-interface
set -e # Exit on failure
cargo build --release

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 "$@"