11 lines
142 B
Plaintext
Raw Normal View History

2018-03-29 21:26:53 -04:00
while (1) {
2018-04-11 20:49:32 -04:00
rect(0, 0, 480, 300, 0)
2018-04-08 17:29:30 -04:00
ppos(0, 0)
print("Free mem: ")
print(freemem())
2018-03-29 21:26:53 -04:00
print("\n")
2018-04-08 17:29:30 -04:00
choice = filemenu()
program(choice)
2018-03-29 21:26:53 -04:00
}