mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
19 lines
257 B
Plaintext
19 lines
257 B
Plaintext
/*
|
|
** Example: c like expressions
|
|
**
|
|
** TODO
|
|
*/
|
|
|
|
a: 100;
|
|
b: ( array[a] );
|
|
c: sizeof xyz;
|
|
d: i*stride + j;
|
|
e: 2.71828;
|
|
f: ( (H << 16) | (H >> 16) );
|
|
g: ( {0, +1, -1} );
|
|
h: foo.bar;
|
|
(i += 1);
|
|
(j = 0);
|
|
(k = i*stride + j);
|
|
l: ( foo(bar, array[k], sizeof c) );
|