Skip to content

Instantly share code, notes, and snippets.

@Zorgatone
Created November 6, 2014 11:59
Show Gist options
  • Save Zorgatone/d8e294a57a9cd4b06ed9 to your computer and use it in GitHub Desktop.
Save Zorgatone/d8e294a57a9cd4b06ed9 to your computer and use it in GitHub Desktop.
Brainfuck: Italian Hello World - prints "Hello" with CRLF line ending.
>>>++++++++
[
<++++++++
[
<+<+
>+>--
]
>-
]
<<+++. C 67
---
[
<+>-
]
<+
[
>+>+<<-
]
>++++++++. i 105
>. a 97
<++++++.> o 111
[
<->-
]
<
-. \r 13 (delete this line for unix LF or keep for DOS CRLF)
---. \n 10
@Zorgatone
Copy link
Author

Compressed version:

>>>++++++++[<++++++++[<+<+>+>--]>-]<<+++.---[<+>-]<+[>+>+<<-]>++++++++.>.<++++++.>[<->-]<-.---.

@rdebath
Copy link

rdebath commented Aug 12, 2017

More compressed version

+++++++++++++[>+++++>++++++++>+<<<-]>++.>+.--------.++++++++++++++.>.---.

Without CR

>+>+>+>++[>[->+++++<<+++>]<<]>.>>-----.--------.++++++++++++++.>>.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment