Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Latest commit

 

History

History
21 lines (15 loc) · 468 Bytes

File metadata and controls

21 lines (15 loc) · 468 Bytes

Lambda Lang

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

Credits

All and everything is shamelessly stolen from here. Thanks to Mihai Bazon for such a great tutorials.

License

WTFPL – Do What the Fuck You Want to Public License.