Skip to content

Instantly share code, notes, and snippets.

@Jacke
Forked from chrismytton/README.md
Created March 6, 2013 22:18
Show Gist options
  • Save Jacke/5103628 to your computer and use it in GitHub Desktop.
Save Jacke/5103628 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