Skip to content

Instantly share code, notes, and snippets.

@Schwad
Created July 25, 2023 20:40
Show Gist options
  • Save Schwad/5e4b14340bf0e40a2e167a8504927706 to your computer and use it in GitHub Desktop.
Save Schwad/5e4b14340bf0e40a2e167a8504927706 to your computer and use it in GitHub Desktop.
class Fish
def Fish.flop # `Fish::flop` also works. Normal Rubyists would do `self.flop`
puts 'huzzah!'
end
end
Fish::flop
#=> huzzah!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment