Skip to content

Instantly share code, notes, and snippets.

@s9gf4ult
Forked from vessi/gist:8960700
Created February 12, 2014 17:49
Show Gist options
  • Save s9gf4ult/8960807 to your computer and use it in GitHub Desktop.
Save s9gf4ult/8960807 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