prog8/examples/test.p8

17 lines
217 B
Plaintext
Raw Normal View History

%import textio
2022-03-13 11:52:12 +00:00
2021-10-30 13:15:11 +00:00
main {
2022-03-22 00:41:23 +00:00
ubyte variable = 42
2022-03-04 21:26:46 +00:00
sub start() {
2022-03-22 00:41:23 +00:00
txt.print("value=")
txt.print_ub(variable)
2022-02-27 15:27:02 +00:00
2022-03-22 00:41:23 +00:00
variable = foo()
}
2022-02-27 15:27:02 +00:00
2022-03-22 00:41:23 +00:00
sub foo() -> ubyte {
return variable+1
2022-03-04 21:26:46 +00:00
}
2022-02-17 23:40:31 +00:00
}