From 51253c4da1b493f7629d15ae43b544f5d660b6b5 Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Thu, 8 Jan 2026 20:54:50 +1100 Subject: [PATCH] Update Ground Types --- Ground-Types.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Ground-Types.md b/Ground-Types.md index 4da22dc..e229be7 100644 --- a/Ground-Types.md +++ b/Ground-Types.md @@ -2,6 +2,6 @@ Ground has 5 built-in types, which all hold a different purpose. - int: This stores a signed 64-bit integer. As CGround is written in C, integer overflow/underflow is **undefined behaviour**. - double: This stores the same values as a C double, i.e. 1 bit sign, 11 bit exponent, 52 bit mantissa. -- string: -- char: -- list: \ No newline at end of file +- string: This stores an immutable sequence of characters, stored in memory as a `const char*`. +- char: This stores a single character. +- list: This stores an array of variables. \ No newline at end of file