Added /drawtriangle command

master
Chloe Fontenot 🏳️‍⚧️ 2023-04-04 21:13:42 +07:00
parent 83ab674cdd
commit 7aef248390
1 changed files with 2 additions and 2 deletions

@ -99,7 +99,7 @@ function design3(input) {
if (i == 0 || (j == 0 || j == (i - 1))) { // Check if we're at the beginning or end of the line
outputString += "*";
} else {
outputString += " ";
outputString += " ";
}
}
}
@ -114,7 +114,7 @@ function design3(input) {
if ((i == 0 || (j == 0 || j == (i - 1)))) { // Check if we're at the beginning or end of the line
outputString += "*";
} else {
outputString += " ";
outputString += " ";
}
}
}