The output of this program will be:
5
What will be the output of this program?
var number = 5;
var greater_than_zero = number > 0;
if (greater_than_zero){
println(number);
}
0
5
True
Nothing will print
1 answer