Last active
November 9, 2021 01:18
-
-
Save ryanckulp/d701fc5cf13cb226e082a48cf81ed000 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
def create_full_name(first, last) | |
"#{first} #{last}" | |
end | |
full_name = create_full_name("Ryan", "Kulp") | |
name_length = full_name.length |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment