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

16
examples/09-import.sx Normal file
View File

@@ -0,0 +1,16 @@
std :: #import "modules/std.sx";
//flat
#import "modules/math.sx";
main :: () -> s32 {
{
defer std.print("after hello");
//expect stdout : hello there
std.print("hello there");
}
v:= std.Vector(3,f32).[1,2,3];
std.print("\n{}\n", v);
}