Delete previous progress

This commit is contained in:
Krzosa Karol
2022-05-02 09:49:22 +02:00
parent 6d68fd07aa
commit 3c376bbe30
13 changed files with 81 additions and 1274 deletions

View File

@@ -1,8 +1,38 @@
call:(param:U32)U32{
Thingy::enum{
@str=10 Value = 1,
}
Thing::union{
union:{
}
struct:{
}
}
Thing::struct{
data: U32;
inside_call :: (param: U32){
}
}
call :: (param:U32) U32{
inner_call :: (param2:U32){
size_of_s64 = sizeof(:S64);
size_of_val = sizeof(param);
param2 + 10;
return;
}
inner_call();
}
@stringify
Enumeration:enum{
None,
@@ -13,7 +43,11 @@ Enumeration:enum{
@sllqueue()
@sllqueue(prefix=thing_scope, next=next_scope)
Thing:struct{
Thing::struct{
Inner_Struct :: {
test_val : U32;
}
thing:Inner_Struct;
next: Thing*;
first: Thing*;
last: Thing*;