Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Ruby
medium
Ruby
Proc vs lambda usage
Single-choice MCQ
What does `puts demo` output?
def demo p = Proc.new { return 10 } p.call 20 end