Created
September 18, 2019 16:48
Print full name with second name as opcional
This file contains 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
void printFullName(String name, String surname, [String secondName = ""]){ | |
print("My name is: $name $secondName $surname"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment