1 2 3 4 5 6 7 8 9
PROCEDURE add_three(arg) { DISPLAY("inside") RETURN arg + 3 } y ← add_three(3) DISPLAY("did func work?") DISPLAY(y = 6)