Please in order to save solutions and appear on the leaderboards.

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:

CmdPseudocode
>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 bytes, 0 chars
Restore solution
All
Compiled from AT&T syntax to x86-64 Linux. Use syscalls to write output.
ctrl + enter or

Delete Solution

Are you sure you want to delete your solution(s) for brainfuck?

If you have seperate bytes and chars solutions then both will be deleted.

This is irreversible, please backup any code you care about.

Type I understand and press confirm to continue.