Skip to content

Commit

Permalink
Merge pull request learn-co-students#4 from neudork/neudork-1444697470
Browse files Browse the repository at this point in the history
Updated README.md
  • Loading branch information
aviflombaum committed Oct 13, 2015
2 parents 689c209 + 19f29e4 commit 8a5d494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Start with building those methods (or copying code you might have written before

You'll then need to build your `#turn` method. Before building a full turn method according to the failing tests, let's setup a quick CLI so that you can watch your turn method perform as you build, visually confirming it behaves as expected.

Open `bin/turn`, you'll see that it is already setup with `#!/usr/bin/env ruby` so you can execute it by running `./bin/turn` or `ruby bin/turn.rb` from your terminal. It currently does nothing (because it has no code), but try it out just for fun.
Open `bin/turn`, you'll see that it is already setup with `#!/usr/bin/env ruby` so you can execute it by running `./bin/turn` or `ruby bin/turn` from your terminal. It currently does nothing (because it has no code), but try it out just for fun.

The purpose of this file is to execute a turn of tic tac toe. The first thing it needs to do is load our library of methods defined in `lib/turn.rb`.

Expand Down Expand Up @@ -139,7 +139,7 @@ Add to `lib/turn.rb`

```ruby
def turn(board)
"Please enter 1-9:"
puts "Please enter 1-9:"
end
```

Expand Down

0 comments on commit 8a5d494

Please sign in to comment.