Re: General Beginner Issues
- Posted by mattlewis (admin) Jul 16, 2013
- 3077 views
DerekParnell said...
Kirkkaf13 said...
[3]Can someone explain how I can declare a string variable, is this using sequence?
A string is a sequence containing only integer values. Each integer is the code for a character. By default, only ASCII codes are currently supported.
Technically, only bytes are supported. The rest is up to your console. In a typical Linux console, it's probably UTF-8, and you can output valid UTF-8. In Windows, of course, there are different code pages that allow you to use different character encodings.
Matt