Strings
Strings can be entered with " as delimeters:
>> "Hello world!"Hello world!"Strings can be joined using the <> operator:
>> "Hello" <> " " <> "world!"Hello world!Numbers cannot be joined to strings:
>> "Debian" <> 6Debian<>6They have to be converted to strings using ToString first:
>> "Debian" <> ToString(6)Debian6You can input a named Unicode character like this: \[Name]
>> "\[Epsilon]"ϵYou can input a 2 or 4 digits hexadecimal Unicode character like this: \.xx or \:xxxx
>> "\:20AC"€