;; Run-time Stack Script file ;; ;; Start main(): ;; call main 0 3 55 56 49 ;; Make some calls: call R 0 0 call G 0 1 76 ;; Check the stack: display ;; Terminate a function call: return ;; Check the stack: display ;; Return: return ;; Make a call: call P 1 7 2 63 31 ;; Set a local: set 1 95 ;; Make a call: call H 1 44 4 18 53 73 78 ;; Make a call: call H 2 44 82 0 ;; Return: return ;; Make a call: call G 1 92 0 ;; Check the stack: display ; Quit: exit