Skip to content

Commit 569a3f3

Browse files
author
Eric Smith
committed
make readme more readable
1 parent 266bd34 commit 569a3f3

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,35 @@
11
To test:
2-
2+
```
33
gradle test
4+
```
45

56
To run:
6-
7+
```
78
gradle run
9+
```
810

911
When you run the hangman program you'll see something like this:
1012

1113
Current Clue Is _ _ _ _ _ _
14+
1215
Current Clue Is _ _ _ _ _ _
16+
1317
Current Clue Is _ _ _ _ _ _
18+
1419
Current Clue Is _ _ _ _ _ _
20+
1521
Current Clue Is _ _ _ _ _ _
22+
1623
Current Clue Is _ _ _ _ _ _
24+
1725
Current Clue Is _ _ _ _ _ _
26+
1827
Current Clue Is _ _ _ _ _ _
28+
1929
Current Clue Is _ _ _ _ _ _
30+
2031
com.hangman.Game Over
2132

2233
What the hangman game does play hangman against a computer player. Each blank space represents a letter that hasn't been guessed. When your player guesses correctly it's displayed on the screen.
2334

24-
Currently your player only guesses the letter "A". You will edit YourPlayer.java in an effort to make it a better Hangman player. The player's code can be found in YourPlayer.java and the tests can be found in YourPlayerTest.java. You are not allowed ot change anything else.
35+
Currently your player only guesses the letter "A". You will edit `YourPlayer.java` in an effort to make it a better Hangman player. The player's code can be found in `YourPlayer.java` and the tests can be found in `YourPlayerTest.java`. You are not allowed ot change anything else.

0 commit comments

Comments
 (0)