Skip to content

Instantly share code, notes, and snippets.

@koppen
Created January 25, 2017 09:02
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 koppen/bc8edaf0ca8c87950c851f5458b84875 to your computer and use it in GitHub Desktop.
Save koppen/bc8edaf0ca8c87950c851f5458b84875 to your computer and use it in GitHub Desktop.
def do_stuff
list = [1, 2, 3, 4, 5]
list.map { |value|
return "Fizz" if value == 3
value
}
end
p do_stuff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment