## ## ## ## ## ## #### ### ## ##
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ######### #### ## ## ######### ####
## #### ## ## ## ## ## ## ## ## ##
#### #### ## ## ## #### ## ## ##
[…]
Do you know the official Ruby interpreter "goruby"?
The 28 Bytes of Ruby Joy!
The 28 Bytes of Ruby Joy will notably clean up your code: […]
Ruby Brainfuck golf [Update]
Some days ago, I discovered a website – which is the most addicting one I know :) – codegolf.com. The goal is, to solve programming problems with as short code as possible.
As I said, it is addicting. You do not write better ruby code by golfing. But you can really improve the knowledge of the language. And it is fun :)
Brainfuck
After doing some of the other challenges I tried the brainfuck challenge.
Brainfuck is a Turing-complete esoteric programming language consisting only of 8 letters, operating on a 30000 cells-array. This is the hello world program:
>+++++++++[<++++++++>-]<.>+++++++[<++++>-]<+.+++++++..+++.[-]>++++++++[<++++>-]
<.>+++++++++++[<++++++++>-]<-.--------.+++.------.--------.[-]>++++++++[<++++>-
]<+.[-]++++++++++.The goal is to build a interpreter. […]