Skip to content

Instantly share code, notes, and snippets.

@misfo
Created August 1, 2012 19:20
Show Gist options
  • Save misfo/3229909 to your computer and use it in GitHub Desktop.
Save misfo/3229909 to your computer and use it in GitHub Desktop.
module Functions
module_function
def state
@state || ":-)"
end
def make_stateful!
@state = ":-("
end
end
Functions.state #=> ":-)"
Functions.make_stateful!
Functions.state #=> ":-("
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment