Files
TDT4205/ps6/vsl_programs/ps6-codegen2/simple_if.vsl
T
2026-04-28 15:27:55 +02:00

21 lines
270 B
Plaintext

func main(a) {
if (a > 5)
println("Input is above 5")
else
println("Input is not above 5")
println("Bye!")
}
//TESTCASE: 7
//Input is above 5
//Bye!
//TESTCASE: 5
//Input is not above 5
//Bye!
//TESTCASE: -2
//Input is not above 5
//Bye!