Code Example

Here is a code example:

 1module Foo
 2  class Bar
 3    include Boz::Bin
 4
 5    attr_accessor :fire
 6
 7    def baz(bing={})
 8      File.open("file.txt") do |fh|
 9        fh.lines.each do |line|
10          p line
11        end
12      end
13      p bing[:human] + 'human'
14      print "wow! #{@fire}"
15    end
16  end
17end

And that’s pretty much it…I borrowed this syntax from ”github flavored markdown”.