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(); str = await input();
// Check if user types anything other than a number // Check if user types anything other than a number
if (isNaN(str)) { if (isNaN(str)) {
print("INVALID INPUT. TRY ENTERING A NUMBER INSTEAD.\n") print("INVALID INPUT. TRY ENTERING A NUMBER INSTEAD.\n");
continue continue;
} }
x = parseInt(str); x = parseInt(str);
y = parseInt(str.substr(str.indexOf(",") + 1)); y = parseInt(str.substr(str.indexOf(",") + 1));