From 6bc70b0d4619a5098e47117ee058040e769a0531 Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Mon, 23 Dec 2019 16:28:44 +0600 Subject: [PATCH] Update ticTacToe.d --- lesson#7/ticTacToe.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesson#7/ticTacToe.d b/lesson#7/ticTacToe.d index a6a9180..2003a5a 100644 --- a/lesson#7/ticTacToe.d +++ b/lesson#7/ticTacToe.d @@ -76,7 +76,7 @@ void print(char[3][3] array) { writeln(); for(int i = 0; i < array.length; i++) { - write("\t", i); + write("\t", i); // '\t' character means tab } writeln();