' *** SELECT.GFA *** ' ' *** Nullstring not recognised in CASE after compiling ' CLS PRINT " Enter ""Q"" to stop." ' DO PRINT LINE INPUT " Input a string or press immediately: ",t$ SELECT t$ CASE "Q","q" EXIT IF TRUE CASE "" PRINT " That was an empty string" DEFAULT PRINT " That was a string" ENDSELECT LOOP ' CLS PRINT PRINT " This text will not be printed after compiling..." PRINT PRINT " An empty string ("") is not recognised by CASE in a compiled program." PRINT " Some terrible things happen (3 bombs), so you'd better reset!" ~INP(2) ' CLS