Added /drawtriangle command

This commit is contained in:
2023-04-04 21:13:42 -05:00
parent 83ab674cdd
commit 7aef248390

View File

@@ -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 += " ";
}
}
}