Last active
February 11, 2022 21:29
-
-
Save CodeMaster7000/d8517c5213104a6a09b96c568996a424 to your computer and use it in GitHub Desktop.
A basic conversation starter coded in Shell, which uses a name input to start a simple conversation.
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
| clear | |
| read -p "May I know your name, please? " name | |
| echo "Hello $name, let us be friends!" | |
| echo "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment