[examples] c like expressions example

This commit is contained in:
Allen Webster
2021-10-09 22:07:52 -07:00
parent ac9f415180
commit 126fab22df
8 changed files with 305 additions and 20 deletions
+3 -3
View File
@@ -9,6 +9,6 @@ b: 2;
c: 3;
w: 100;
x: a*w + b;
y: b*w + c;
z: c*w + a;
x: a;
y: b + w*a;
z: (c + w*(b + w*a));