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
+17
View File
@@ -0,0 +1,17 @@
!! 测试import语句导入pylang模块
!! 导入pylang模块
import pylang
show(`=== Testing import pylang ===`);
!! 测试简单的Python代码
python(`print('Hello from Python!')`);
!! 测试带有变量的Python代码
python(`
x = 10
y = 20
result = x + y
print(f'Sum: {result}')
`);