mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 04:31:20 +00:00
27 lines
207 B
Plaintext
27 lines
207 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
|
|
}
|
|
|
|
|
|
~ main {
|
|
; this is imported
|
|
|
|
X = 42
|
|
return 44
|
|
}
|
|
|