Files
sx/examples/09-import.sx
2026-02-24 15:10:02 +02:00

17 lines
277 B
Plaintext

std :: #import "modules/std.sx";
//flat
#import "modules/math";
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);
}