aaronryank / fork-bomb

Fork bombs in lots of languages
The Unlicense
750 stars 133 forks source link

brainfuck example is not a fork bomb #18

Open Mee42 opened 4 years ago

Mee42 commented 4 years ago

it is an infinite loop. If you were to convert it to C, it would look like this:

void run(int* mem) {
    *mem++;
    while(*mem) { mem++; *mem++; };
}

which is very clearly not a fork bomb

Mee42 commented 3 years ago

Please don't yell

No one answered because the maintainer isn't maintaining this project, and no one other then the maintainer would give af

ghost commented 3 years ago

This is correct, it is not a correct brainfuck fork bomb, I have come across a solution (not) by myself, it is not a fork bomb but it leaves traces.

+[[+]>+]
ghost commented 3 years ago

This might cause a system to crash if left long. `+[[.+]+]

Xprogrammer777 commented 1 year ago

This is correct, it is not a correct brainfuck fork bomb, I have come across a solution (not) by myself, it is not a fork bomb but it leaves traces.

+[[+]>+]

btw brainfuck is only brainfuck