pseudocode 0.1.7

AP CSP Pseudocode interpreter (rough cut)
Documentation
1
2
3
4
5
6
7
8
9
10
a 🠐 (1 + 2)
b 🠐 (3.5 * (1 + 2))
string_val 🠐 "hello"

DISPLAY("a is")
DISPLAY(a)
DISPLAY("b is")
DISPLAY(b)
DISPLAY("string_val is")
DISPLAY(string_val)