mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
13 lines
157 B
Brainfuck
13 lines
157 B
Brainfuck
for (j=0; j<10; j++) {
|
|
a = .9;
|
|
b = .9+j;
|
|
scale = 2;
|
|
for (i=0; i<90; i++) {
|
|
scale += 1;
|
|
a /= 10;
|
|
b += a;
|
|
x = sqrt(b);
|
|
}
|
|
x;
|
|
}
|
|
quit
|