pseudocode 0.1.7

AP CSP Pseudocode interpreter (rough cut)
Documentation
PROCEDURE add_three(arg) {
    DISPLAY("inside")
    RETURN arg + 3
}

y ← add_three(3)

DISPLAY("did func work?")
DISPLAY(y = 6)