From e1ca4f3603010dd85c6da0d3a887c9fdcfa9c43e Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 24 Jun 2024 07:14:04 +0200 Subject: Add basic support for floating point numbers --- README | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 514046b..a770ac8 100644 --- a/README +++ b/README @@ -55,10 +55,17 @@ The build script also accepts some subcommands. They are as follows: ────────────────────────────── 1. The following datatypes are supported. The unsized integer types - default to the systems word size (typically 64 bits). + default to the systems word size (typically 64 bits). The rune type + is an alias for the i32 type and serves a purely semantic purpose. + In the future it will be a distinct type. + /* Integer types */ i8, i16, i32, i64, i128, int u8, u16, u32, u64, u128, uint + rune + + /* Floating-point types */ + f16, f32, f64, f128 2. C-style block comments. Line comments are intentionally not included. -- cgit v1.2.3