Skip to content

Instantly share code, notes, and snippets.

@Alacrity01
Created June 18, 2019 15:49
Show Gist options
  • Save Alacrity01/235987c02c57010311a8a7fba1c95ca5 to your computer and use it in GitHub Desktop.
Save Alacrity01/235987c02c57010311a8a7fba1c95ca5 to your computer and use it in GitHub Desktop.
Week 9, Day 2
scope :quick, -> { where("prep_time < ?", 40) }
A lambda ( -> ) is a block of code that...
^ lambda
block_of_code = -> (num) {5 * number}
block_of_code.call
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment