Skip to content

Instantly share code, notes, and snippets.

@bascht
Created April 20, 2015 09:22
Show Gist options
  • Select an option

  • Save bascht/dd58ff3f7c5d2e730991 to your computer and use it in GitHub Desktop.

Select an option

Save bascht/dd58ff3f7c5d2e730991 to your computer and use it in GitHub Desktop.
[24] pry(main)> first = "First"
=> "First"
[25] pry(main)> last = "Last"
=> "Last"
[26] pry(main)> name(first, last) {
[26] pry(main)* return `${first} ${last}`
[26] pry(main)* }
=> "First Last"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment