21 lines
270 B
Plaintext
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!
|