Create a callable procedure.

A procedure is a block of code that is executed only when called.

label j
jlabel name
Source?score = 10 for 2 goto "plus" next print "SCORE = ?score" label "plus" ?score + 20 return ExecutionSCORE = 50 ' 10 + (2 * 20)

return