/* * define a string variable */ module string_variable; const S : array 14 of character = "hello world"; var s1 : array 18 of character := S; s2 : array 19 of character := "hello again world"; s3 : array 20 of character; begin end