top of page
This is a default new Octagon program template.
Use it to create a new program.
Program
---
New Octagon Program
---
prog_vars =
d/count 0
prog_vars.
prog_start =
print "Program Start"
prog_start.
prog_loop =
-- main program loop
print "Count /count"
inc /count
any /count >= 10 -> exitprog
prog_loop.
prog_stop =
print "Bye"
prog_stop.
bottom of page