Initial commit: Oraset B-5 with C++ style features

This commit is contained in:
JGZ_YES
2026-07-23 13:21:11 +08:00
commit 1f1405391c
50 changed files with 5947 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
proc add(a, b) {
return a + b;
}
let result = add(5, 3);
echo("add(5, 3) =", result);