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
| puts ("Hi, I'm C-3P0, human-cyborg relations") | |
| puts ("What's your name?") | |
| #obtains the user's name | |
| user_name = gets.chomp() | |
| puts("It is a pleasure to meet you #{user_name}. Have you ever met a protocol droid before?") | |
| #obtains user's answer | |
| user_answer = gets.chomp() | |
| puts("#{user_answer}? How interesting, for someone from around these parts.") |
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
| bash() { | |
| mkdir GeneralAssembly | |
| cd GeneralAssembly | |
| mkdir Homework | |
| mkdir Notes | |
| mkdir Projects | |
| mkdir Outcomes | |
| cd Homework |