first commit

This commit is contained in:
2025-10-11 11:23:58 +08:00
commit e8774085f8
48 changed files with 3087 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/dash
export PATH=$PATH:/bin:/usr/bin
vdir=`dirname $1`
target=$vdir/main
/usr/bin/g++ -Wall -O2 -o $target $1 -lm
shift
exec "$vdir/main" "$@"