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
+13
View File
@@ -0,0 +1,13 @@
!! 测试分号必需的情况
!! 没有分号的赋值语句(应该报错)
x = 10
!! 有分号的赋值语句(应该正常执行)
y = 20;
!! 没有分号的函数调用(应该报错)
show(y)
!! 有分号的函数调用(应该正常执行)
show(x);