From 56697d51ea64d00fda71dd1816e86edfbd9def01 Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Thu, 8 Jan 2026 20:15:22 +1100 Subject: [PATCH] Add Ground Types --- Ground-Types.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Ground-Types.md diff --git a/Ground-Types.md b/Ground-Types.md new file mode 100644 index 0000000..52a5883 --- /dev/null +++ b/Ground-Types.md @@ -0,0 +1,4 @@ +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. \ No newline at end of file