so... jai :D

This commit is contained in:
agra
2026-02-04 01:34:30 +02:00
commit 55fc5790e4
60 changed files with 15876 additions and 0 deletions

12
examples/12-meta.sx Normal file
View File

@@ -0,0 +1,12 @@
#import "modules/std.sx";
#import "modules/math.sx";
main :: () {
x:Type = f64;
v:f64 = 3.2;
print("{}\n", x);
print("{}\n", v);
x= Vec4;
print("{}\n", x);
}