2024-11-19 19:36:00 +00:00
|
|
|
%import textio
|
2024-11-15 19:56:56 +00:00
|
|
|
|
2024-11-13 23:54:07 +00:00
|
|
|
main {
|
2024-11-11 23:11:19 +00:00
|
|
|
sub start() {
|
2024-11-19 19:36:00 +00:00
|
|
|
myblock.printit()
|
|
|
|
myblock2.printit2()
|
2024-11-15 19:56:56 +00:00
|
|
|
}
|
2024-11-19 19:36:00 +00:00
|
|
|
}
|
2024-11-15 19:56:56 +00:00
|
|
|
|
2024-11-19 19:36:00 +00:00
|
|
|
myblock {
|
|
|
|
sub printit() {
|
|
|
|
txt.print_uwhex(&printit, true)
|
|
|
|
txt.nl()
|
|
|
|
txt.print_uwhex(&myblock, true)
|
|
|
|
txt.nl()
|
2024-11-15 19:56:56 +00:00
|
|
|
}
|
2024-11-19 19:36:00 +00:00
|
|
|
}
|
2024-11-15 19:56:56 +00:00
|
|
|
|
2024-11-19 19:36:00 +00:00
|
|
|
myblock2 {
|
|
|
|
sub printit2() {
|
|
|
|
txt.print_uwhex(&printit2, true)
|
|
|
|
txt.nl()
|
|
|
|
txt.print_uwhex(&myblock2, true)
|
|
|
|
txt.nl()
|
2024-11-08 18:43:59 +00:00
|
|
|
}
|
2024-11-05 22:56:58 +00:00
|
|
|
}
|