mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
17 lines
342 B
Lua
17 lines
342 B
Lua
%import textio
|
|
|
|
main {
|
|
uword[] pages1 = [ &page_credits.chars_1]
|
|
uword foo2 = &page_credits.chars_1
|
|
|
|
sub start() {
|
|
txt.print_uw(foo2)
|
|
uword @shared foo = pages1[0] ; TODO fix IR compiler error no chunk with label 'page_credits.chars_1' (caused by optimizer)
|
|
}
|
|
|
|
}
|
|
|
|
page_credits {
|
|
ubyte[] chars_1 = [11]
|
|
}
|