A console application that takes a word and replaces it with another word.
Behavior | Input | Output |
---|---|---|
User inputs three strings: phrase, word, replacement word | "hello world", "world", "Haru" | creates new instance of user input |
If user fails to include word that is a part of the phrase, returns an error | "hello world", "wow", "Haru" | error, please enter a word to be replaced that a part of the phrase |
User inputs three strings: phrase, word, replacement word | "hello world", "world", "Haru" | "hello Haru" |
In your computer's terminal:
- Navigate to where you want this application to be saved, i.e.:
cd desktop
- Clone the file from GitHub with HTTPS
git clone
- Enter into the new file directory
cd scrabble
- Start the program
dotnet run
No known bugs at this time.
Have a bug or an issue with this application? Open a new issue here on GitHub.
- C#
- .NET Core
Copyright (c) 2020 Jeremy Padot && K.Wicz