Skip to content

Instantly share code, notes, and snippets.

@glejeune
Created July 1, 2011 21:06
Show Gist options
  • Select an option

  • Save glejeune/1059397 to your computer and use it in GitHub Desktop.

Select an option

Save glejeune/1059397 to your computer and use it in GitHub Desktop.
BrainF*ck to Ook!
O="Ook. ";o="Ook? ";k="Ook! ";_={">"=>O+o,"<"=>o+O,"+"=>O+O,"-"=>k+k,"."=>k+O,","=>O+k,"["=>k+o,"]"=>o+k};puts (ARGV[0]||"++++++++++[>++++++++>+++++++++++>+++<<<-]>-.>+.----.>+++.").split(//).map{|c|_[c]}.join
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment