Skip to content

Commit

Permalink
add 128-bit ints
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Nov 28, 2024
1 parent 93c4400 commit fa3050c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
way.
* Correspondingly, the identifiers `inf`, `-inf`, and `nan` are now syntax
errors.
* `u128` and `i128` have been added as well-known number type annotations.

### KQL

Expand Down
2 changes: 2 additions & 0 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,15 @@ Signed integers of various sizes (the number is the bit size):
* `i16`
* `i32`
* `i64`
* `i128`

Unsigned integers of various sizes (the number is the bit size):

* `u8`
* `u16`
* `u32`
* `u64`
* `u128`

Platform-dependent integer types, both signed and unsigned:

Expand Down

0 comments on commit fa3050c

Please sign in to comment.