Initial commit: Oraset3 programming language with OS-level features

This commit is contained in:
JGZSunShineMod1.0.3
2026-05-22 12:19:05 +08:00
commit 1205365f32
27 changed files with 4191 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
enum Color {
RED,
GREEN,
BLUE = 10,
YELLOW
};
c := RED;
println(c);
println(BLUE);