Created
February 24, 2019 04:42
-
-
Save bashbaugh/55253735ed5071c86910415435449681 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Here are two name variables: | |
| let some_first_name = "Bob"; | |
| let some_last_name = "Joe"; | |
| // Here we use them in the name printer function: | |
| print_full_name(some_first_name, some_last_name); | |
| // Or else we can change the first name: | |
| print_full_name("Margaret", some_last_name); | |
| // Or else we can make up both names: | |
| print_full_name("Jane", "Smith"); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment