Program: print "NEU: IF-KONSTRUKT" rem Testing IF constructs @title TestIF01 a=0 b=0 gosub "tryif" a=0 b=1 gosub "tryif" a=1 b=0 gosub "tryif" a=1 b=1 gosub "tryif" end :tryif print "" print "" print "case", a, b if a then print "a is true" if b then print "b is true" else print "a is false" endif return ===================================== [NEU: IF-KONSTRUKT] [] [] [case 0 0] [a is false] [] [] [case 0 1] [a is false] [] [] [case 1 0] [a is true] [] [] [case 1 1] [a is true] [b is true]