Skip to content

Instantly share code, notes, and snippets.

@jaredcwhite
Last active September 29, 2020 03:33
Show Gist options
  • Save jaredcwhite/337b34b60ea0ff61a2546632278e52bc to your computer and use it in GitHub Desktop.
Save jaredcwhite/337b34b60ea0ff61a2546632278e52bc to your computer and use it in GitHub Desktop.
One-liner anonymous class method in Ruby 3
one_liner = Class.new { def self.print_me!() = puts("A class method on one line!") }
one_liner.print_me!
# Copy and try it out at https://rubyapi.org/repl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment