READY 10 A$ = "HELLO" 20 B# = 3 30 PRINT A$ 40 PRINT B# RUN Initializing A$ Setting variable dimensions Dimension 0 is 10 A$ has 1 dimensions with 10 total objects Initializing B# Setting variable dimensions Dimension 0 is 10 B# has 1 dimensions with 10 total objects ? 20 : RUNTIME ERROR Incompatible types in variable assignment READY B# is created with a type of UNDEFINED which is incompatible with integer types. Apparently string assignment doesn't care about undefined valuetype.
416 B
416 B