Initial commit: Oraset programming language with documentation

This commit is contained in:
JGZSunShineMod1.0.3
2026-04-24 21:54:58 +08:00
commit 2089d28529
131 changed files with 28968 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
!! 简单的Hello World程序
show(`Hello, Oraset!`);
!! 变量定义和算术运算
x = 10;
y = 20;
sum = x + y;
show(`Sum: `, sum);
!! 字符串拼接
message = `Hello, ` + `Oraset!`;
show(message);