tu stai facendo una cosa del tipo
str="ciao "
IF a = 1 then
& "bello"
ELSE
& "brutto"
END IF
ma non si puote!
str="ciao "
IF a = 1 then
str = str & "bello"
ELSE
str = str & "brutto"
END IF
tu stai facendo una cosa del tipo
str="ciao "
IF a = 1 then
& "bello"
ELSE
& "brutto"
END IF
ma non si puote!
str="ciao "
IF a = 1 then
str = str & "bello"
ELSE
str = str & "brutto"
END IF