mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-10 00:13:04 +01:00
17f33912d7
PR: 4183
15 lines
192 B
Brainfuck
15 lines
192 B
Brainfuck
"This tests arrays!
|
|
"
|
|
define p(x,y) {
|
|
auto i;
|
|
for (i=x; i<y; i++) a[i];
|
|
}
|
|
|
|
for (i=0; i<10; i++) a[i] = i;
|
|
j = p(0,10);
|
|
|
|
for (i=1000; i<1030; i++) a[i] = i;
|
|
j = p(1000,1030);
|
|
j = p(0,10);
|
|
|