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

The output of this program will be:

5