mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-22 11:54:58 -07:00
15 lines
112 B
Plaintext
15 lines
112 B
Plaintext
/*
|
|
** Example: expressions intro
|
|
**
|
|
** TODO
|
|
*/
|
|
|
|
a: 1;
|
|
b: 2;
|
|
c: 3;
|
|
|
|
w: 100;
|
|
x: a*w + b;
|
|
y: b*w + c;
|
|
z: c*w + a;
|