mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
16 lines
205 B
Brainfuck
16 lines
205 B
Brainfuck
define p ( x[] ) {
|
|
auto i;
|
|
for (i=0; i<10; i++) x[i];
|
|
}
|
|
|
|
define m ( x[] ) {
|
|
auto i;
|
|
for (i=0; i<10; i++) x[i] *= 2;
|
|
}
|
|
|
|
scale = 20;
|
|
for (i=0; i<10; i++) a[i] = sqrt(i);
|
|
|
|
p(a[]);
|
|
m(a[]);
|
|
p(a[]);
|