diff options
| author | Mhd Sulhan <m.shulhan@gmail.com> | 2016-03-25 13:59:08 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2020-01-25 14:13:01 +0700 |
| commit | 8755c8d549f71be4712208977c85e907825fa929 (patch) | |
| tree | 835f564680233127c8c095497193386c1e584bbe | |
| parent | a234882f10b9402c0510f2234015af96c23841bb (diff) | |
| download | golang-id-tour-8755c8d549f71be4712208977c85e907825fa929.tar.xz | |
Sync with golang/tour@7c06ad9257cff25132371c45de4456aaa2bfc2b7.
| -rw-r--r-- | content/moretypes/slices-of-slice.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/moretypes/slices-of-slice.go b/content/moretypes/slices-of-slice.go index 35e5b87..eb1a442 100644 --- a/content/moretypes/slices-of-slice.go +++ b/content/moretypes/slices-of-slice.go @@ -18,7 +18,7 @@ func main() { // Giliran untuk para pemain board[0][0] = "X" board[2][2] = "O" - board[2][0] = "X" + board[1][2] = "X" board[1][0] = "O" board[0][2] = "X" |
