From 03ade228d5313f124c86420fc318efb3dc64f520 Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 16:09:03 -0800 Subject: [PATCH] Update Primitive Data Types --- Primitive-Data-Types.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Primitive-Data-Types.md b/Primitive-Data-Types.md index b112b5f..ea5e858 100644 --- a/Primitive-Data-Types.md +++ b/Primitive-Data-Types.md @@ -6,9 +6,7 @@ # Primitive Data Types -### Integers - -| Unsigned Integer Primitives | Description | +| Integer Primitives | Description | | --- | --- | | UInt_64 | 64-Bit Unsigned Integer | | UInt_32 | 32-Bit Unsigned Integer | @@ -19,24 +17,18 @@ | SInt_16 | 16-Bit Signed Integer | | SInt_8 | 8-Bit Signed Integer | -### Floating Point Numbers - | Floating Point Primitives | Description | | --- | --- | | float | A 32-Bit single precision floating point number | | double | A 64-Bit double precision floating point number | | long double | A 80-Bit extended precision floating-point number | -### Characters - | Character Primitives | Description | | --- | --- | | Char_32 | UTF_32 Character | | Char_16 | UTF_16 Character | | Char_8 | UTF_8 Character | -### Misc - | Misc Primitives | Description | | --- | --- | | Byte | A single byte of data, essentially just a UInt_8 |