Commit aec01c36 authored by Yasuhiro Matsumoto's avatar Yasuhiro Matsumoto Committed by Andrew Gerrand

doc/play: use []rune insetead of []int.

R=golang-dev
CC=golang-dev
https://golang.org/cl/5823058
parent d528f52d
...@@ -14,7 +14,7 @@ const N = 11 + 1 // length of a row (+1 for \n) ...@@ -14,7 +14,7 @@ const N = 11 + 1 // length of a row (+1 for \n)
// Periods represent illegal fields, // Periods represent illegal fields,
// ● are pegs, and ○ are holes. // ● are pegs, and ○ are holes.
var board = []int( var board = []rune(
`........... `...........
........... ...........
....●●●.... ....●●●....
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment