prog8/examples/test.p8

17 lines
314 B
Plaintext
Raw Normal View History

%import textio
2021-10-30 13:15:11 +00:00
main {
sub start() {
str input = "?" * 20
2021-12-22 20:47:41 +00:00
c128.disable_basic()
txt.lowercase()
txt.print("Hello There! Enter Your Name: ")
void txt.input_chars(input)
txt.nl()
repeat {
txt.print(input)
txt.spc()
}
}
}