Update main.d

This commit is contained in:
Ki Rill 2020-01-12 10:57:43 +06:00 committed by GitHub
parent dbc4e76e60
commit ee4f3d3d45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -36,7 +36,7 @@ void main() {
writeln("Thanks for playing!");
}
// print 10 empty lines (for formatting)
// print 30 empty lines (for formatting)
void clear() {
for(int i = 0; i < 30; i++) {
writeln();
@ -129,7 +129,7 @@ void gamePlay(ref GameState gameState) {
int iy = to!int(y - '0');
clear(); // clearing the screen by inserting new lines
// if (x, y) coordinates are greater than the bounds of the map or are negative, go to the begining
// if (x, y) coordinates are greater than the length of the map or negative, go to the begining
if(ix < 0 || ix > territory.length-1 || iy < 0 || iy > territory.length-1) {
continue;
}
@ -249,7 +249,7 @@ void enemyAttack(ref char[5][5] array, ref int ships_destroyed) {
void display(char[5][5] array) {
write(" ");
for(int i = 0; i < array.length; i++) {
write(" ", i); // '\t' character means tab
write(" ", i);
}
writeln();