Sha256: 34f6ab01f104cc26e1520c05b62c2d29c2a76a3981d8ab9b3b9077f82e82160f

Contents?: true

Size: 187 Bytes

Versions: 2

Compression:

Stored size: 187 Bytes

Contents

module TictactoeTracypholmes
  class Player
    attr_reader :token  # it 'cannot be changed once assigned in initialize'

    def initialize(token)
      @token = token
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tictactoe_tracypholmes-0.1.3 lib/tictactoe_tracypholmes/player.rb
tictactoe_tracypholmes-0.1.0 lib/tictactoe_tracypholmes/player.rb