Created
May 19, 2021 06:49
-
-
Save oscaralanpierce/68c45fa47bd19877537c05bc8a002ae5 to your computer and use it in GitHub Desktop.
git diff output
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
| diff --git a/hello_world.rb b/hello_world.rb | |
| index 733c205..7146b79 100644 | |
| --- a/hello_world.rb | |
| +++ b/hello_world.rb | |
| @@ -1 +1,3 @@ | |
| -puts 'Hello World!' | |
| +puts 'Please enter a name:' | |
| +name = gets | |
| +puts 'Hello ' + name + '!' | |
| (END) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment