Update Ground Types

2026-01-09 17:37:13 +11:00
parent 611c6d3740
commit fe4496affd

@@ -8,7 +8,7 @@ Examples: `46`, `-17`
- double: This stores the same values as a C double, i.e. 1 bit sign, 11 bit exponent, 52 bit mantissa. - double: This stores the same values as a C double, i.e. 1 bit sign, 11 bit exponent, 52 bit mantissa.
Examples: `0.5`, `-6.25` Examples: `0.5`, `-6.25`
- string: This stores an immutable sequence of characters, stored in memory as a `const char*`. Notated with the string surrounded by the `"` symbol. - string: This stores an immutable sequence of characters, stored in memory as a `char*`. Notated with the string surrounded by the `"` symbol.
Example: `"Hello, world!"` Example: `"Hello, world!"`
- char: This stores a single character. Notated with the character surrounded by the `'` symbol. - char: This stores a single character. Notated with the character surrounded by the `'` symbol.