Skip to content

Instantly share code, notes, and snippets.

@wallyqs
Last active December 25, 2015 15:09
Show Gist options
  • Save wallyqs/6996622 to your computer and use it in GitHub Desktop.
Save wallyqs/6996622 to your computer and use it in GitHub Desktop.

Example with line breaks

The following should be rendered

module TestWith
  attr_reader :counter, :key
  
  def initialize(key)
    transition(key)
  end

  def transition(key)
    @key = key
    @counter = 0
  end
end

End of the example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment