js
a = "test"
if (a == "test") (
console.log("owo")
)else(
console.log("?")
)source_file.js:4
)else(
^^^^
SyntaxError: Unexpected token else
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:374:25)
at Object.Module._extensions..js (module.js:417:10)
at Module.load (module.js:344:32)
at Function.Module._load (module.js:301:12)
at Function.Module.runMain (module.js:442:10)
at startup (node.js:136:18)
at node.js:966:3js
a = "test"
if (a == "test") {
console.log("owo")
}else{
console.log("?")
}owo
js
a = "tesjt"
if (a == "test") {
console.log("owo")
}else{
console.log("?")
}?
python3
a = "test"
if a == "test":
print("owo")
else:
print("?")owo
python3
a = "test"
if a == "tesjt":
print("owo")
else:
print("?")?
vb
a = "test" if a = "test" then print "owo" else print "?" End if
(0:0) Declaration expected. (2:0) Statement cannot appear outside of a method body/multiline lambda. (3:0) Declaration expected. (4:0) Statement cannot appear outside of a method body/multiline lambda. (5:0) Declaration expected. (6:0) 'End If' must be preceded by a matching 'If'.
vb
Dim a As String a = "test" If a = "test" Then print "owo" Else print "?" End if
(1:0) Statement is not valid in a namespace. (2:0) Declaration expected. (3:0) Statement cannot appear outside of a method body/multiline lambda. (4:0) Declaration expected. (5:0) Statement cannot appear outside of a method body/multiline lambda. (6:0) Declaration expected. (7:0) 'End If' must be preceded by a matching 'If'.