A simple programming language written in JavaScript (lol).
sqr = def(x) x * x;
cube = def(x) x * x * x;
z = 4;
x = 8;
y = 5;
cube(z + x) - sqr(y) + 2
All and everything is shamelessly stolen from here. Thanks to Mihai Bazon for such a great tutorials.
WTFPL – Do What the Fuck You Want to Public License.