brainfuck
Details
Brainfuck is a minimalistic esoteric programming language created by Urban Müller in 1993.
Assuming an infinitely large array, the entire brainfuck alphabet matches the following pseudocode:
Cmd | Pseudocode |
---|---|
> | ptr++ |
< | ptr-- |
+ | array[ptr]++ |
- | array[ptr]-- |
. | print(chr(array[ptr])) |
[ | while(array[ptr]){ |
] | } |
Write a program that will receive various brainfuck programs as arguments and execute each program in turn.
0 characters
Top-level programs are supported, args holds ARGV.
ARGV is available via STDIN, joined on NULL. x is a no-op.
arguments holds ARGV, print() to output with a newline,
write() to output without a newline.
say() is available without any import.
SELECT arg FROM argv to access the arguments, only the first
column of the first result set will be printed, NULL values will be
skipped, and the dialect is SQLite.
ctrl + enter
or
Run