Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
why didnt you close the issue then ? ;-)
@DreadSquirre1 I think you are misunderstanding the task. Your BF code returns "Hello World!" however that is not the task. The task is to accept a string, and to output a brainfuck program which when run, will produce the original string.
So if the input is "Hello World!" then your BF program should produce
-[------->+<]>-.-[->+++++<]>++.+++++++..+++.[--->+<]>-----.---[->+++<]>.-[--->+<]>---.+++.------.--------.-[--->+<]>.
(or some other equivalent program) as output.Basically, if you are solving this kata in Brainfuck, your task is to generate brainfuck code in brainfuck.
I run this code in a couple of interpreters and it seems to return
Hello World!
in all of them. The kata does not seem to be broken. Why exactly do you think it's broken, and how does the example not work for you?