aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-24 07:14:04 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-24 07:16:25 +0200
commite1ca4f3603010dd85c6da0d3a887c9fdcfa9c43e (patch)
tree4a2e099facd232f0f7af1e58a7a57cfb2ac0ebd9 /README
parent67efc35de3e631a8d1634666386102f7f057b14d (diff)
Add basic support for floating point numbers
Diffstat (limited to 'README')
-rw-r--r--README9
1 files changed, 8 insertions, 1 deletions
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.