Files
TDT4205/ps3/vsl_programs/ps3-simplify/and-or-convert.vsl
T
2026-02-23 17:25:27 +01:00

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")
}