Files
tlib/oversampling/WDL/eel2/scripts/pproc_test.eel
2024-05-24 13:28:31 +02:00

11 lines
179 B
Plaintext

<? x=37; ?>
<? printf("y=%d;",x); ?>
<? _suppress += 1; ?>
printf("this will not get compiled\n");
<? _suppress -= 1; ?>
printf("apparently y is now %d but x is %d\n",y,x);