Skip to content

Instantly share code, notes, and snippets.

@suryagaddipati
Created July 3, 2012 20:09
Show Gist options
  • Save suryagaddipati/3042649 to your computer and use it in GitHub Desktop.
Save suryagaddipati/3042649 to your computer and use it in GitHub Desktop.
class Hello
def x
end
def huh?
end
def z
end
def y
huh?? x
self.z
end
end
Hello.new.y
@suryagaddipati
Copy link
Author

hello.rb:11: syntax error, unexpected keyword_self, expecting ':'
self.z
--- ^

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