prog8/il65/examples/imported.ill
Irmen de Jong 4c250fdc17 namespaces
2018-08-13 20:28:15 +02:00

37 lines
325 B
Plaintext

%zp full
%address 33
%option enable_floats
~ extra {
; this is imported
X = 42
return 44
}
~ extra2 {
; this is imported
X = 42
return 44
label_in_extra2:
X = 33
sub sub_in_extra2() -> () {
return
}
sub another_sub_in_extra2() -> () {
return
}
}
~ main2 {
; this is imported
X = 42
return 44
}