This commit is contained in:
agra
2026-02-28 18:03:38 +02:00
parent 2552882ce6
commit 6a920dbd2c
24 changed files with 14084 additions and 780 deletions

6
examples/test_generic.sx Normal file
View File

@@ -0,0 +1,6 @@
#import "modules/std.sx";
main :: () -> s32 {
v := Vector(3,f32).[1,2,3];
print("{}
", v);
}