Add missing semicolons

This commit is contained in:
Juan Marco
2022-06-27 15:17:51 +02:00
parent 21e6c54b75
commit 4e289c5e89

View File

@@ -260,8 +260,8 @@ async function main()
str = await input();
// Check if user types anything other than a number
if (isNaN(str)) {
print("INVALID INPUT. TRY ENTERING A NUMBER INSTEAD.\n")
continue
print("INVALID INPUT. TRY ENTERING A NUMBER INSTEAD.\n");
continue;
}
x = parseInt(str);
y = parseInt(str.substr(str.indexOf(",") + 1));