11 lines
142 B
Plaintext
11 lines
142 B
Plaintext
while (1) {
|
|
rect(0, 0, 480, 300, 0)
|
|
ppos(0, 0)
|
|
|
|
print("Free mem: ")
|
|
print(freemem())
|
|
print("\n")
|
|
choice = filemenu()
|
|
program(choice)
|
|
}
|