aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
Diffstat (limited to 'std')
-rw-r--r--std/builtins-main.felan23
1 files changed, 23 insertions, 0 deletions
diff --git a/std/builtins-main.felan b/std/builtins-main.felan
new file mode 100644
index 0000000..0045b45
--- /dev/null
+++ b/std/builtins-main.felan
@@ -0,0 +1,23 @@
+void :: struct(0){};
+
+i8 :: struct(1){};
+i16 :: struct(2){};
+i32 :: struct(4){};
+i64 :: struct(8){};
+
+u8 :: struct(1){};
+u16 :: struct(2){};
+u32 :: struct(4){};
+u64 :: struct(8){};
+
+f32 :: struct(4){};
+f64 :: struct(8){};
+
+String :: struct(8*3){};
+
+print :: (str:String)->void{
+ felan asm () {
+
+ };
+};
+