[examples] start setting up expression parser intro

This commit is contained in:
Allen Webster
2021-10-09 20:14:07 -07:00
parent 670f5592f7
commit 838283c706
3 changed files with 111 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
** Example: expressions intro
**
** TODO
*/
a: 1;
b: 2;
c: 3;
w: 100;
x: a*w + b;
y: b*w + c;
z: c*w + a;