From f291ce96590f8cf57d3812f70c0e675a689e7177 Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Fri, 9 Jan 2026 17:37:47 +1100 Subject: [PATCH] Update Ground Types --- Ground-Types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ground-Types.md b/Ground-Types.md index d66db4b..c8a1a96 100644 --- a/Ground-Types.md +++ b/Ground-Types.md @@ -8,10 +8,10 @@ Examples: `46`, `-17` - 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` -- string: This stores an immutable sequence of characters, stored in memory as a `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 enclosed by the `"` symbol. 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 enclosed by the `'` symbol. Example: `'a'`, `' '` (space) - list: This stores an array of variables.