top of page
This program displays some information during a rocket launch.
Program
---
First Octagon Progam
Refer to section 5.2 of the JackBord JOurneys book no 1
while looking at this program.
---
prog_vars =
d/launch_rocket 0
d/air_temperature 0.0
d/rh 0
d/address ""
prog_vars.
prog_start =
-- Setup the pgoram
/launch_rocket 10
/air_temperature 28.5
/rh 80
/address "1 Olympus Mons Mars"
prog_start.
prog_loop =
-- Display some information
print "Launch in /launch_rocket secs"
print "to /address"
print "where the air temp is /air_temperature RH is /rh"
exitprog
prog_loop.
prog_stop =
print "Prog STOPPED!"
prog_stop.
bottom of page