Document new Bool width in spec

This commit is contained in:
Sasha Koshka 2024-03-06 16:51:11 -05:00
parent 32e08871c9
commit ea792a7569
1 changed files with 2 additions and 1 deletions

View File

@ -67,7 +67,8 @@ chunks of memory, and to index arrays and such.
Byte is defined as the smallest addressable integer. It is unsigned. It is
usually equivalent to U8.
### Bool
Bool is a boolean type. It is equivalent to Byte.
Bool is a boolean type. It is equivalent to U1. For now, since arbitrary width
integers are not supported, it is the only way to get a U1 type.
### Rune
Rune is defined as a U32. It represents a single UTF-32 code point.
### String