7 lines
97 B
Bash
7 lines
97 B
Bash
|
#/bin/sh
|
||
|
|
||
|
echo "Name?"
|
||
|
read name
|
||
|
echo "Age?"
|
||
|
read age
|
||
|
echo "Hello $name, you are $age years old"
|