Skip to content

Instantly share code, notes, and snippets.

@ldunn
Created August 12, 2010 06:45
Show Gist options
  • Select an option

  • Save ldunn/520479 to your computer and use it in GitHub Desktop.

Select an option

Save ldunn/520479 to your computer and use it in GitHub Desktop.
class Word
attr_accessor :pops, :pushes, :apply
@pops, @pushes, @apply = nil
def initialize(pops, pushes, &proc)
@pops = pops
@pushes = pushes
@apply = proc
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment