so... jai :D
This commit is contained in:
16
examples/09-import.sx
Normal file
16
examples/09-import.sx
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user