Skip to content

Latest commit

 

History

History

01-saying-hello

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Bash Logo

Saying Hello

The “Hello, World” program is the first program you learn to write in many languages, but it doesn’t involve any input. So create a program that prompts for your name and prints a greeting using your name.

Example Output

 What is your name? Brian
 Hello, Brian, nice to meet you!

Constraint

  • Keep the input, string concatenation, and output sepa- rate.