Identifiers declared as type w32string are sequences that can only contain integers in the range 0 to 255 inclusive.
Example:
w32string Name Name = "abc" -- Okay. Name = 12 -- Fails Name = {'a', 'b', 'c'} -- Okay Name = {'a', 'b', 12.3} -- Fails Name = {"abc", "def"} -- Fails.-------------------------------------