blob: be9672e29d6e2f5cded4bc6b485d80d31fcdc395 (
plain)
1
2
3
4
5
6
7
8
|
double a; # this is not passed to the generated C file
# nor is this
if( cur->x == cur->y ) continue;
a = cur->x;
cur->x = cur->y;
cur->y = a;
/* this comment is passed to the C file */
cur->avg:E = (cur->x+cur->y)/2.0;
|