CLS DIM A AS STRING * 3 'Fixed lenght string of 3 chars A ="ABC" 'Assign a text of three characters PRINT A 'Prints the string A = "ABCDEF" 'Assign a text with a lengh major of 3 chars PRINT A 'Prints the string, note the output! A = "ABC!£$%&/()=?^^?=)(/&%$£!|" 'Another time PRINT A