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
+14
View File
@@ -0,0 +1,14 @@
!! Test file for Oraset extensions
!include `string`
show(`Testing string module:`);
test_string = ` Hello, World! `;
show(`Original string: `, test_string);
show(`Length: `, len(test_string));
show(`To upper case: `, upper(test_string));
show(`To lower case: `, lower(test_string));
show(``);
show(`All tests completed!`);