# squares.pc # # Prints the squares of all numbers from 1 through 100. You may want to pipe # the output of this program through "cat -n | less". # --- Initial data --- +0 000 000 001 # 000 - index +0 000 000 101 # 001 - max +0 000 000 000 # 002 - value +9999999999 # --- Program text --- +3 000 ... 002 # 000 - value = index * index -8 002 ... ... # 001 - print(value) +7 000 001 000 # 002 - if (++index < max) goto 000 +9 ... ... ... # 003 - halt() +9999999999 # vim: set ft=conf: