17 lines
277 B
Plaintext
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);
|
|
}
|