OpenComal Playground


Comal keyboard:

If you don't know what to do, enter the following (through the "keyboard"):

    10 for f=0 to 10
    20 pr("Hello")
    30 next
    40 //
    50 proc pr(a$) closed
    60 print a$;" world!"
    70 endproc
    list
    run