wes d2a2ba9e15 first commit 4 lat temu
..
README.md d2a2ba9e15 first commit 4 lat temu
code.cpp d2a2ba9e15 first commit 4 lat temu
unitTest.cpp d2a2ba9e15 first commit 4 lat temu

README.md

Name Greeting!

by Matt tags: strings, language_fundamentals, formatting

Summary

Create a function that takes a name and returns a greeting in the form of a string. Examples helloName("Gerald") ➞ "Hello Gerald!" helloName("Tiffany") ➞ "Hello Tiffany!" helloName("Ed") ➞ "Hello Ed!" Notes The input is always a name (as string). Don't forget the exclamation mark! If you get stuck on a challenge, find help in the Resources tab. If you're r

Instructions

Create a function that takes a name and returns a greeting in the form of a string.

Examples

helloName("Gerald") ➞ "Hello Gerald!"

helloName("Tiffany") ➞ "Hello Tiffany!"

helloName("Ed") ➞ "Hello Ed!"

Notes

  • The input is always a name (as string).
  • Don't forget the exclamation mark!
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.