How to write better brainf*ck code ?
Hello everyone ! I learnt brainf*ck a few days ago and I want to learn more about how to write efficient brainf*ck code.
I explain myself: when I see on the internet the code to write "hello world" it looks like that:
++++++++++[>+++++++>++++++++++>+++>+<<<<-]
>++.>+.+++++++..+++.>++.<<+++++++++++++++.
>.+++.------.--------.>+.>.
and when I write it, it look more like that :
>>>+++++++[<++[<+++++>-]>-]<<++>
>>++++++++++[<++[<+++++>-]>-]<<+>
>>+++++++++++[<++[<+++++>-]>-]<<-->
>>+++++++++++[<++[<+++++>-]>-]<<+>
>>+++[<++[<+++++>-]>-]<<++>
>>+++++++++[<++[<+++++>-]>-]<<--->
>>+++++++++++[<++[<+++++>-]>-]<<++++>
>>++++++++++[<++[<+++++>-]>-]<
>>+++[<++[<+++++>-]>-]<<+++
[<]>.>.>..>.>.>.<<.>>>.<<<<.>>>>>.>.
[[-]<]
Do you have any tips for me ? I know there are many things to improve
Thank you in advance ;)