Update ticTacToe.d

This commit is contained in:
Ki Rill 2019-12-23 16:28:44 +06:00 committed by GitHub
parent 98a2e31aa9
commit 6bc70b0d46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ void print(char[3][3] array) {
writeln(); writeln();
for(int i = 0; i < array.length; i++) { for(int i = 0; i < array.length; i++) {
write("\t", i); write("\t", i); // '\t' character means tab
} }
writeln(); writeln();