Skip to content

Instantly share code, notes, and snippets.

@vessi
Created February 12, 2014 17:44
Show Gist options
  • Save vessi/8960700 to your computer and use it in GitHub Desktop.
Save vessi/8960700 to your computer and use it in GitHub Desktop.
class Z
def call_some_method arg
puts arg
end
def yoba
:yobamethod
end
def test
yoba = :yobavar
call_some_method(yoba)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment