15 lines
203 B
Plaintext
15 lines
203 B
Plaintext
func other() {
|
|
return 1
|
|
}
|
|
|
|
func main(a) {
|
|
if (a and other())
|
|
print("Hei")
|
|
|
|
if (a or other())
|
|
print("Yo")
|
|
|
|
if (a > 2 or other() - 1 and a + 1 < 10)
|
|
print("Nope")
|
|
}
|