Skip to content

Instantly share code, notes, and snippets.

@Jacke
Forked from chrismytton/README.md
Created February 26, 2013 22:46
Show Gist options
  • Save Jacke/5043067 to your computer and use it in GitHub Desktop.
Save Jacke/5043067 to your computer and use it in GitHub Desktop.

Literate Ruby

Inspired by Literate CoffeeScript.

$ cat hello.litrb
Here's a simple program

    puts "Hello, world"
$ ruby litrb.rb < hello.litrb
Hello, world
eval ARGF.readlines.select { |line| line[/^([ ]{4}|\t)/] }.map { |line| line[4..-1] }.join
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment