aboutsummaryrefslogtreecommitdiff
path: root/src/interp/types.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/types.boot')
-rw-r--r--src/interp/types.boot25
1 files changed, 23 insertions, 2 deletions
diff --git a/src/interp/types.boot b/src/interp/types.boot
index e0aa5cd1..6061252e 100644
--- a/src/interp/types.boot
+++ b/src/interp/types.boot
@@ -34,18 +34,39 @@
import '"boot-pkg"
)package "BOOT"
-++ Basic types used throughout Boot codes.
+--% Basic types used throughout Boot codes.
+
%Void <=> nil
+
%Boolean <=> BOOLEAN
+
+%Byte <=>
+ UNSIGNED_-BYTE 8
+
+%Char <=>
+ CHARACTER
+
%Short <=> FIXNUM
+
%Integer <=> BIGNUM
+
%Number <=> NUMBER
+
%Symbol <=> SYMBOL
+
%String <=> STRING
+
%Atom <=> atom
+
%List <=> LIST
-%Vector <=> VECTOR
+
+%SimpleArray a <=>
+ SIMPLE_-ARRAY a
+
+%Vector a <=> VECTOR a
+
%Thing <=> true
+
%Sequence <=> SEQUENCE
%Pair <=> cons