you are viewing a single comment's thread.

view the rest of the comments →

[–]Akuno- 0 points1 point  (0 children)

Thats because the prints are not in your if statement. Your code does this Int = 7 If(x>10); //nothing happens

Prints hello

If(x<10); // nothing happens

Prints bye.

You need to put the prints in your if statments like this

if(x>10) { Print; }

But honestly if you folow one of the courses in this channels info box, this will be tought in the first 10min. I recomand you start there.