Skip to content

Instantly share code, notes, and snippets.

@jasonswett
Created January 7, 2022 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonswett/9808c02f7add3e0c3837adba53ce44f4 to your computer and use it in GitHub Desktop.
Save jasonswett/9808c02f7add3e0c3837adba53ce44f4 to your computer and use it in GitHub Desktop.
class Greeter
def greet(name)
"Hello #{name}"
end
end
class User
def first_name
"Foo"
end
def greet_with(&block)
Greeter.new.instance_exec(&block)
end
def greet_first_name
p = Proc.new { first_name }
greet_with { greet(p.call) }
end
end
puts User.new.greet_first_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment