shithub: sl

Download patch

ref: 59eda8c98a7f8dc75145a73361e4de123bc4e8e8
parent: b8265c8f266a5cfb54402aa6e52be74c4eff27ce
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Wed Mar 19 14:45:54 EDT 2025

docs: refactor a bit more

Correct signatures of a few builtins.
Make (help ...) print whether the term is an undefined symbol if
docstring is missing.
Few minor corrections/simplifications.

--- a/boot/sl.boot
+++ b/boot/sl.boot
@@ -13,34 +13,36 @@
               #fn("z0700}2:" #(aset!)) NIL NIL NIL NIL NIL NIL NIL NIL NIL NIL NIL #fn("n3012082>1|:" #(#fn("n1A061:" #())))
               NIL NIL NIL NIL NIL NIL NIL NIL #fn("z0700}2:" #(aref)) NIL NIL NIL)
             *properties* #table(*funvars* #table(zero? ((x))  bound? ((symbol))  void? ((x))  >= ((a . rest))  identity ((x))  1+ ((n))  length= ((lst
-  n))  positive? ((x))  doc-for ((term (doc NIL)))  io-eof? ((io))  car ((lst))  <= ((a . rest))  str (term)  remprop ((symbol
-  key))  negative? ((x))  rand (NIL)  sym (term)  nan? ((x) (v))  void (rest)  file ((path (:read
-  NIL)
-  (:write NIL) (:create NIL) (:truncate NIL) (:append NIL)))  fixnum? ((v))  rand-double (NIL)  exit ((status))  cdr ((lst))  + ((num…))  vec? ((v))  for ((min
+  n))  positive? ((x))  doc-for ((term (doc NIL)))  io-eof? ((io))  car ((lst))  <= ((a . rest))  str (term)  < ((a . rest))  remprop ((symbol
+  key))  negative? ((x))  rand (NIL)  sym (term)  nan? ((v))  void (rest)  file ((path (:read NIL)
+                                                                                       (:write NIL)
+                                                                                       (:create NIL)
+                                                                                       (:truncate
+                                                                                        NIL)
+                                                                                       (:append NIL)))  fixnum? ((v))  rand-double (NIL)  exit ((status))  cdr ((lst))  + (rest)  vec? ((v))  for ((min
   max fn))  lz-unpack ((data :to destination)
-                       (data :size decompressed-bytes))  > ((a . rest))  1- ((n))  io? ((term))  defstruct ((name
+                       (data :size decompressed-bytes))  > ((a . rest))  1- ((n))  defstruct ((name
   doc options… (slot-1 DEFAULT) slot-2 (slot-3 :read-only))
-  (name (:type vec) (:named T) (:constructor T) (:conc-name NIL) (:predicate NIL) . slots))  eof-object? ((term))  help ((term))  __finish ((status))  rand-u32 (NIL)  = ((a . rest)
-  (num…))  rand-u64 (NIL)  buffer (NIL)  compare ((x y))  num? ((v))  /= ((a . rest))  fn? ((v))  add-exit-hook ((fun))  lz-pack ((data
-  (level 0)))  rand-float (NIL)  *prompt* (NIL)  builtin? ((v))  cons? ((value))  vm-stats (NIL)  * ((num…))  putprop ((symbol
-  key val))  getprop ((symbol key (def NIL)))  aref ((seq subscript…))  io->str ((io)))  *doc* #table(io->str "Return an in-memory `io` buffer converted to a string."  bound? "Return `T` if `symbol` has a value associated with it, `NIL` otherwise."  io-eof? "Return `T` if `io` is currently in the \"end of file\" state, `NIL`\notherwise."  sym "Convert terms to a symbol.\n\nThis is equivalent to `(sym (str terms…))`."  nan? "Return `T` if `v` is a floating point representation of NaN, either\nnegative or positive, `NIL` otherwise."  for "Call the function `fn` with a single integer argument, starting from\n`min` and ending with `max`.\n\nExamples:\n\n    (for 0 2 (λ (i) (print (- 2 i)))) → 210"  fixnum? "Return `T` if `v` is of a fixnum type, `NIL` otherwise."  exit "Terminate the process with the specified status. Does not return."  > "Return `T` if the arguments are in strictly decreasing order (previous\none is greater than the next one)."  + "Return sum of the numbers or `0` with no arguments."  __finish "A function called right before exit by the VM."  lz-unpack "Return decompressed data previously compressed using lz-pack.\n\nEither destination for the decompressed data or the expected size of\nthe decompressed data must be specified.  In the latter case a new\narray is allocated."  defstruct "Defines a structure type with a specific name and slots.\n\nThe default underlying type is a \"named\" vector (`:type vec`),\nwhere the first element is the name of the structure's type, the\nrest are the slot values.  If the name as the first element isn't\nrequired, `:named NIL` should be used.  A list can be used instead\nof a vector by adding `:type list` option.\n\nAn example of a default constructor signature, based on structure\ndefinition:\n\n    (defstruct blah a b c) →\n      (make-blah (:a NIL) (:b NIL) (:c NIL))\n\nIt can be customized in several ways. For example:\n\n    ; disable the constructor altogether\n    (defstruct blah :constructor NIL a b c)\n    ; only change its name\n    (defstruct blah :constructor blargh a b c)\n    ; rename AND avoid using keywords\n    (defstruct blah :constructor (blah a b c) a b c)\n\nThe option `:conc-name` specifies the slot accessor prefix, which\ndefaults to `name-`.\n\nDefault predicate name (`name?`) can be changed:\n\n    ; use \"blargh?\" instead of \"blah?\"\n    (defstruct blah :predicate blargh? a b c)"  compare "Return -1 if `x` is less than `y`, 0 if equal, and `1` if `y` is\ngreater than `x`.\n\nExamples:\n\n    (compare 'a 'b)       → -1\n    (compare 1 1)         → 0\n    (compare \"b\" \"a\") → 1"  buffer "Return an in-memory buffer for I/O, of `io` type.\n\nA buffer can be used for both reading and writing at the same\ntime."  num? "Return `T` if `v` is of a numerical type, `NIL` otherwise.\n\nNumerical types include floating point, fixnum, bignum, etc.\nNote: ironically, a NaN value is considered a number by this function\nsince it's only testing the _type_ of the value."  add-exit-hook "Puts an one-argument function on top of the list of exit hooks.\n\nOn shutdown each exit hook is called with the exit status as a\nsingle argument, which is (usually) `0` on success and any other\nnumber on error."  rand-float "Return a random float on [0.0, 1.0] interval."  builtin? "Return `T` if `v` is a built-in function, `NIL` otherwise."  cons? "Return `T` if the value is a cons cell, `NIL` otherwise."  1+ "Equivalent to `(+ n 1)`."  aref "Return the sequence element by the subscripts.  The sequence can be an\narray, vector or a list.\n\nExamples:\n\n    (def a '((1 (2 (3)) 4)))\n    (aref a 0)     → (1 (2 (3)) 4)\n    (aref a 1)     → index 1 out of bounds\n    (aref a 0 0)   → 1\n    (aref a 0 1 0) → 2\n    (aref a 0 2)   → 4"  *properties* "All properties of symbols recorded with `putprop` are recorded in this table."  zero? "Return `T` if `x` is zero."  >= "Return `T` if the arguments are in non-increasing order (previous\none is greater than or equal to the next one)."  void? "Return `T` if `x` is `#<void>`, `NIL` otherwise."  length= "Perf
\ No newline at end of file
+  (name (:type vec) (:named T) (:constructor T) (:conc-name NIL) (:predicate NIL) . slots))  eof-object? ((term))  io? ((term))  help ((term))  __finish ((status))  rand-u32 (NIL)  buffer (NIL)  rand-u64 (NIL)  = ((a . rest))  compare ((x
+  y))  num? ((v))  /= ((a . rest))  fn? ((v))  add-exit-hook ((fun))  lz-pack ((data (level 0)))  rand-float (NIL)  *prompt* (NIL)  builtin? ((v))  cons? ((value))  vm-stats (NIL)  * (rest)  putprop ((symbol
+  key val))  getprop ((symbol key (def NIL)))  aref ((seq subscript0 . rest))  io->str ((io)))  *doc* #table(io->str "Return an in-memory `io` buffer converted to a string."  bound? "Return `T` if `symbol` has a value associated with it, `NIL` otherwise."  io-eof? "Return `T` if `io` is currently in the \"end of file\" state, `NIL`\notherwise."  < "Return `T` if the arguments are in strictly increasing order (next\none is greater than the previous one)."  sym "Convert terms to a symbol.\n\nThis is equivalent to `(sym (str terms…))`."  nan? "Return `T` if `v` is a floating point representation of NaN, either\nnegative or positive, `NIL` otherwise."  for "Call the function `fn` with a single integer argument, starting from\n`min` and ending with `max`.\n\nExamples:\n\n    (for 0 2 (λ (i) (print (- 2 i)))) → 210"  fixnum? "Return `T` if `v` is of a fixnum type, `NIL` otherwise."  exit "Terminate the process with the specified status. Does not return."  > "Return `T` if the arguments are in strictly decreasing order (previous\none is greater than the next one)."  + "Return sum of the numbers or `0` with no arguments."  __finish "A function called right before exit by the VM."  lz-unpack "Return decompressed data previously compressed using lz-pack.\n\nEither destination for the decompressed data or the expected size of\nthe decompressed data must be specified.  In the latter case a new\narray is allocated."  defstruct "Defines a structure type with a specific name and slots.\n\nThe default underlying type is a \"named\" vector (`:type vec`),\nwhere the first element is the name of the structure's type, the\nrest are the slot values.  If the name as the first element isn't\nrequired, `:named NIL` should be used.  A list can be used instead\nof a vector by adding `:type list` option.\n\nAn example of a default constructor signature, based on structure\ndefinition:\n\n    (defstruct blah a b c) →\n      (make-blah (:a NIL) (:b NIL) (:c NIL))\n\nIt can be customized in several ways. For example:\n\n    ; disable the constructor altogether\n    (defstruct blah :constructor NIL a b c)\n    ; only change its name\n    (defstruct blah :constructor blargh a b c)\n    ; rename AND avoid using keywords\n    (defstruct blah :constructor (blah a b c) a b c)\n\nThe option `:conc-name` specifies the slot accessor prefix, which\ndefaults to `name-`.\n\nDefault predicate name (`name?`) can be changed:\n\n    ; use \"blargh?\" instead of \"blah?\"\n    (defstruct blah :predicate blargh? a b c)"  compare "Return -1 if `x` is less than `y`, 0 if equal, and `1` if `y` is\ngreater than `x`.\n\nExamples:\n\n    (compare 'a 'b)       → -1\n    (compare 1 1)         → 0\n    (compare \"b\" \"a\") → 1"  buffer "Return an in-memory buffer for I/O, of `io` type.\n\nA buffer can be used for both reading and writing at the same\ntime."  num? "Return `T` if `v` is of a numerical type, `NIL` otherwise.\n\nNumerical types include floating point, fixnum, bignum, etc.\nNote: ironically, a NaN value is considered a number by this function\nsince it's only testing the _type_ of the value."  add-exit-hook "Puts an one-argument function on top of the list of exit hooks.\n\nOn shutdown each exit hook is called with the exit status as a\nsingle argument, which is (usually) `0` on success and any other\nnumber on error."  rand-float "Return a random float on [0.0, 1.0] interval."  builtin? "Return `T` if `v` is a built-in function, `NIL` otherwise."  cons? "Return `T` if the value is a cons cell, `NIL` otherwise."  1+ "Equivalent to `(+ n 1)`."  aref "Return the sequence element specified by the subscripts.  The sequence\n be an array, vector, a list.  Multi-dimensional sequences\nvariating types are also supported.\n\nExamples:\n\n    (def a '((1 #(2 (3)) 4)))\n    (aref a 0)     → (1 (2 (3)) 4)\n    (aref a 1)     → index 1 out of bounds\n    (aref a 0 0)   → 1\n    (aref a 0 1 0) → 2\n    (aref a 0 2)   → 4"  *properties* "All properties of symbols recorded with `putprop` are recorded in this table."  zero? "Return `T` if `x` is zero."  >=
\ No newline at end of file
 orm a bounded length test.\n\nUse this instead of `(= (length lst) n)`, since it avoids unnecessary\nwork and always terminates."  positive? "Return `T` if `x` is greater than zero."  doc-for "Define documentation for a top level term.\n\nIf `term` is a function signature and `doc` is not specified, just\nthe signature will be included in the documentation, without\nreplacing any previously defined."  car "Return the first element of a list or `NIL` if not available."  *builtins* "VM instructions as closures."  str "Convert terms to a concatenated string.\n\nThis is equivalent to `(princ terms…)`, except the string is\nreturned, rather than printed."  remprop "Remove a property value associated with a symbol."  <= "Return `T` if the arguments are in non-decreasing order (previous\none is less than or equal to the next one)."  negative? "Return `T` if `x` is negative."  rand "Return a random non-negative fixnum on its maximum range."  void "Return the constant `#<void>` while ignoring any arguments.\n\n`#<void>` is mainly used when a function has side effects but does not\nproduce any meaningful value to return, so even though `T` or `NIL` could\nbe returned instead, in case of `#<void>` alone, REPL will not print\nit."  Instructions "VM instructions mapped to their encoded byte representation."  file "Open a file for I/O.\n\nAn `io` object is returned.  Without any modes specified the file\nis opened in read-only mode."  rand-double "Return a random double on interval [0.0, 1.0]."  1- "Equivalent to `(- n 1)`."  cdr "Return the tail of a list or `NIL` if not available."  T "A boolean \"true\".\n\n(not T)         → NIL\n(if T 'yes 'no) → 'yes"  vec? "Return `T` if `v` is a vector, `NIL` otherwise."  io? "Return `T` if `term` is of `io` type, `NIL` otherwise."  eof-object? "Return `T` if `term` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
             *syntax-environment* #table(bcode:nconst #fn("n1200r2e3:" #(aref))  doc-for #fn("\x8710002000W1000J60q?140B86;35040<;J404086;35040=863H020212287e212288e2e4e2:20212287e21e3e2:" #(void
   sym-set-doc quote))  with-input-from #fn("z12021e1220e2e1e12315163:" #(#fn(nconc) with-bindings
                                                                          *io-in* #fn(copy-list)))  unless #fn("z1200q211Pe4:" #(if
   begin))  defmacro #fn("z170151863D0710<860=5341=?1@30q42223240<e22526e10=e12715153e3e2:" #(value-get-doc
-  remprop "Remove a property value associated with a symbol."  <= "Return `T` if the arguments are in non-decreasing order (previous\none is less than or equal to the next one)."  negative? "Return `T` if `x` is negative."  rand "Return a random non-negative fixnum on its maximum range."  void "Return the constant `#<void>` while ignoring any arguments.\n\n`#<void>` is mainly used when a function has side effects but does not\nproduce any meaningful value to return, so even though `T` or `NIL` could\nbe returned instead, in case of `#<void>` alone, REPL will not print\nit."  Instructions "VM instructions mapped to their encoded byte representation."  file "Open a file for I/O.\n\nAn `io` object is returned.  Without any modes specified the file\nis opened in read-only mode."  rand-double "Return a random double on interval [0.0, 1.0]."  1- "Equivalent to `(- n 1)`."  cdr "Return the tail of a list or `NIL` if not available."  T "A boolean \"true\".\n\n(not T)         → NIL\n(if T 'yes 'no) → 'yes"  vec? "Return `T` if `v` is a vector, `NIL` otherwise."  io? "Return `T` if `term` is of `io` type, `NIL` otherwise."  eof-object? "Return `T` if `term` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
+"  *builtins* "VM instructions as closures."  str "Convert terms to a concatenated string.\n\nThis is equivalent to `(princ terms…)`, except the string is\nreturned, rather than printed."  remprop "Remove a property value associated with a symbol."  <= "Return `T` if the arguments are in non-decreasing order (previous\none is less than or equal to the next one)."  negative? "Return `T` if `x` is negative."  rand "Return a random non-negative fixnum on its maximum range."  void "Return the constant `#<void>` while ignoring any arguments.\n\n`#<void>` is mainly used when a function has side effects but does not\nproduce any meaningful value to return, so even though `T` or `NIL` could\nbe returned instead, in case of `#<void>` alone, REPL will not print\nit."  Instructions "VM instructions mapped to their encoded byte representation."  file "Open a file for I/O.\n\nAn `io` object is returned.  Without any modes specified the file\nis opened in read-only mode."  rand-double "Return a random double on interval [0.0, 1.0]."  1- "Equivalent to `(- n 1)`."  cdr "Return the tail of a list or `NIL` if not available."  T "A boolean \"true\".\n\n(not T)         → NIL\n(if T 'yes 'no) → 'yes"  vec? "Return `T` if `v` is a vector, `NIL` otherwise."  io? "Return `T` if `term` is of `io` type, `NIL` otherwise."  eof-object? "Return `T` if `term` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
 is less than or equal to the next one)."  negative? "Return `T` if `x` is negative."  rand "Return a random non-negative fixnum on its maximum range."  void "Return the constant `#<void>` while ignoring any arguments.\n\n`#<void>` is mainly used when a function has side effects but does not\nproduce any meaningful value to return, so even though `T` or `NIL` could\nbe returned instead, in case of `#<void>` alone, REPL will not print\nit."  Instructions "VM instructions mapped to their encoded byte representation."  file "Open a file for I/O.\n\nAn `io` object is returned.  Without any modes specified the file\nis opened in read-only mode."  rand-double "Return a random double on interval [0.0, 1.0]."  1- "Equivalent to `(- n 1)`."  cdr "Return the tail of a list or `NIL` if not available."  T "A boolean \"true\".\n\n(not T)         → NIL\n(if T 'yes 'no) → 'yes"  vec? "Return `T` if `v` is a vector, `NIL` otherwise."  io? "Return `T` if `term` is of `io` type, `NIL` otherwise."  eof-object? "Return `T` if `term` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
             *syntax-environment* #table(bcode:nconst #fn("n1200r2e3:" #(aref))  doc-for #fn("\x8710002000W1000J60q?140B86;35040<;J404086;35040=863H020212287e212288e2e4e2:20212287e21e3e2:" #(void
-alone, REPL will not print\nit."  Instructions "VM instructions mapped to their encoded byte representation."  file "Open a file for I/O.\n\nAn `io` object is returned.  Without any modes specified the file\nis opened in read-only mode."  rand-double "Return a random double on interval [0.0, 1.0]."  1- "Equivalent to `(- n 1)`."  cdr "Return the tail of a list or `NIL` if not available."  T "A boolean \"true\".\n\n(not T)         → NIL\n(if T 'yes 'no) → 'yes"  vec? "Return `T` if `v` is a vector, `NIL` otherwise."  io? "Return `T` if `term` is of `io` type, `NIL` otherwise."  eof-object? "Return `T` if `term` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
+`#<void>` is mainly used when a function has side effects but does not\nproduce any meaningful value to return, so even though `T` or `NIL` could\nbe returned instead, in case of `#<void>` alone, REPL will not print\nit."  Instructions "VM instructions mapped to their encoded byte representation."  file "Open a file for I/O.\n\nAn `io` object is returned.  Without any modes specified the file\nis opened in read-only mode."  rand-double "Return a random double on interval [0.0, 1.0]."  1- "Equivalent to `(- n 1)`."  cdr "Return the tail of a list or `NIL` if not available."  T "A boolean \"true\".\n\n(not T)         → NIL\n(if T 'yes 'no) → 'yes"  vec? "Return `T` if `v` is a vector, `NIL` otherwise."  io? "Return `T` if `term` is of `io` type, `NIL` otherwise."  eof-object? "Return `T` if `term` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
  object is returned.  Without any modes specified the file\nis opened in read-only mode."  rand-double "Return a random double on interval [0.0, 1.0]."  1- "Equivalent to `(- n 1)`."  cdr "Return the tail of a list or `NIL` if not available."  T "A boolean \"true\".\n\n(not T)         → NIL\n(if T 'yes 'no) → 'yes"  vec? "Return `T` if `v` is a vector, `NIL` otherwise."  io? "Return `T` if `term` is of `io` type, `NIL` otherwise."  eof-object? "Return `T` if `term` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
             *syntax-environment* #table(bcode:nconst #fn("n1200r2e3:" #(aref))  doc-for #fn("\x8710002000W1000J60q?140B86;35040<;J404086;35040=863H020212287e212288e2e4e2:20212287e21e3e2:" #(void
   sym-set-doc quote))  with-input-from #fn("z12021e1220e2e1e12315163:" #(#fn(nconc) with-bindings
                                                                          *io-in* #fn(copy-list)))  unless #fn("z1200q211Pe4:" #(if
   begin))  defmacro #fn("z170151863D0710<860=5341=?1@30q42223240<e22526e10=e12715153e3e2:" #(value-get-doc
-rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
+m` is `#<eof>`, `NIL` otherwise.\n\nThis object is returned by I/O functions to signal end of file,\nwhere applicable."  help "Display documentation for the specified term, if available."  rand-u32 "Return a random integer on interval [0, 2³²-1]."  = "Numerical equality test.  Return `T` if all numbers are equal,"  rand-u64 "Return a random integer on interval [0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
 ot NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
-L"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
+[0, 2⁶⁴-1]."  NIL "An empty list. Also used as the opposite of T.\n\n(not NIL)         → T\n(if NIL 'yes 'no) → 'no\n(car NIL)         → NIL\n(cdr NIL)         → NIL"  /= "Return `T` if not all arguments are equal. Shorthand for `(not (= …))`."  fn? "Return `T` if `v` is a function, `NIL` otherwise."  lz-pack "Return data compressed using Lempel-Ziv.\n\nThe data must be an array, returned value will have the same type.\nThe optional `level` is between `0` and `10`.  With `level` set to\n`0` a simple LZSS using hashing will be performed.  Levels between\n`1` and `9` offer a trade-off between time/space and ratio.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
 o.  Level\n`10` is optimal but very slow."  arg-counts "VM instructions mapped to their expected arguments count."  *prompt* "Function called by REPL to signal the user input is required.\n\nDefault function prints `#;> `."  getprop "Get a property value associated with a symbol or `def` if missing."  vm-stats "Print various VM-related information, such as the number of GC\ncalls so far, heap and stack size, etc."  * "Return product of the numbers or `1` with no arguments."  putprop "Associate a property value with a symbol."  identity "Return `x`."))
             *syntax-environment* #table(bcode:nconst #fn("n1200r2e3:" #(aref))  doc-for #fn("\x8710002000W1000J60q?140B86;35040<;J404086;35040=863H020212287e212288e2e4e2:20212287e21e3e2:" #(void
   sym-set-doc quote))  with-input-from #fn("z12021e1220e2e1e12315163:" #(#fn(nconc) with-bindings
@@ -53,7 +55,7 @@
 io-in* #fn(copy-list)))  unless #fn("z1200q211Pe4:" #(if
   begin))  defmacro #fn("z170151863D0710<860=5341=?1@30q42223240<e22526e10=e12715153e3e2:" #(value-get-doc
   sym-set-doc void set-syntax! quote #fn(nconc) λ #fn(copy-list)))  time #fn("n1202122e1e2e123024252622e121e32728e5e3e3:" #(let
-fn("z0Ib520852185>1_51485<061:" #(#0=#fn("z0I:" #() void)
+λ #fn(copy-list)))  time #fn("n1202122e1e2e123024252622e121e32728e5e3e3:" #(let
 217975855151PA<0=51e4e3:272:85<e2e1282:7585512:e2A<0=51e4e3:2885<2185=PA<0=51e4:" #(else
   begin or => 1arg-lambda? caddr caadr let if cddr #:g20) cond-clauses->if)))  do #fn("z21<2071052207205220230522425268827872829e12:1=51522829e12:82512825e18:52e153e4e3e2e12825e18952e3:" #(#fn(map)
   car cadr #fn("n170051B38071061:0<:" #(cddr caddr)) letrec #:g338 λ if #fn(nconc) begin #fn(copy-list)))  mark-label #fn("n22002122e21e4:" #(emit
@@ -62,7 +64,7 @@
 let list #fn(copy-list)
   #fn("n22001e3:" #(set!)) unwind-protect begin #fn("n22001e3:" #(set!))))  let #fn("z1q0R3B00?641<?041=?1@30q42021e12223052e124151532225052863C0268687e2e186e3@408788P:" #(#fn(nconc)
   λ #fn(map) #fn("n10B3500<:0:" #()) #fn(copy-list)
-ode #fn("n1200Ee3:" #(aref))  make-label #fn("n120e1:" #(gensym))  bcode:cenv #fn("n1200r3e3:" #(aref))  > #fn("z12021e12273151510e163:" #(#fn(nconc)
+124151532225052863C0268687e2e186e3@408788P:" #(#fn(nconc)
 )  > #fn("z12021e12273151510e163:" #(#fn(nconc)
   < #fn(copy-list) reverse!))  when #fn("z1200211Pqe4:" #(if begin))  quasiquote #fn("n1700E62:" #(bq-process))  help #fn("n1700215270022q5386;3>0486<B;350486873E023240>1875247550@30q4853@076855147550@30q485;J50487360q@>076270524755047860:" #(getprop
   *doc* *funvars* #fn(for-each) #fn("n170A0P5147160:" #(print newline)) newline princ "no help for "
@@ -446,7 +448,7 @@
                        #fn(for-each)
                                                                          #fn("n120AF52420A062:" #(#fn(io-write)))
                                                                          #fn(io->str)) str-join)
-       str-map #fn("n2205021151EI8887L23O0422860231885251524748851?8@\f/^14258661:" #(#fn(buffer)
+                                                                 #fn(io->str)) str-join)
 r)
   #fn(str-length) #fn(io-putc) #fn(str-rune) 1+ #fn(io->str)) str-map)
             str-rep #fn("n21r4L23b0701E5235021:1Kl238022061:1r2l2390220062:2200063:731513@02207401K~5262:742200521r2j262:" #(<=
--- a/src/docs_extra.lsp
+++ b/src/docs_extra.lsp
@@ -12,12 +12,6 @@
         `(void (sym-set-doc ',sym ,doc ',callvars))
         `(void (sym-set-doc ',sym ,doc)))))
 
-(doc-for (= a . rest)
-  "Return `T` if the arguments are equal.")
-
-(doc-for (nan? x)
-  "Return `T` if the argument is *NaN*, regardless of the sign.")
-
 (doc-for (vm-stats)
   "Print various VM-related information, such as the number of GC
    calls so far, heap and stack size, etc.")
--- a/src/system.lsp
+++ b/src/system.lsp
@@ -164,7 +164,7 @@
   "Display documentation for the specified term, if available."
   (let* {[doc (getprop term '*doc*)]
          [funvars (getprop term '*funvars* nil)]
-         [fvs (and funvars (cons? (car funvars)) funvars)]}
+         [fvs (and (cons? funvars) funvars)]}
     (when fvs
       (for-each (λ (fv) (print (cons term fv))
                         (newline))
@@ -175,6 +175,9 @@
       (newline))
     (unless (or doc fvs)
       (princ "no help for " term)
+      (when (and (sym? term)
+                 (not (bound? term)))
+        (princ " (undefined)"))
       (newline))
     (void)))
 
--- a/tools/gen.lsp
+++ b/tools/gen.lsp
@@ -21,7 +21,7 @@
               :cname ,(str "OP_" (or cname (name->cname name)))
               :nargs ,nargs
               :closure ',closure
-              :docs ,docs)))
+              :docs ',docs)))
 
 (def ops (vec
   (op loada0)
@@ -37,18 +37,18 @@
   (op ret)
   (op dup)
   (op car 1 (λ (x) (car x))
-    '{[(lst)
-       "Return the first element of a list or `NIL` if not available."]})
+    {[(lst)
+      "Return the first element of a list or `NIL` if not available."]})
   (op cdr 1 (λ (x) (cdr x))
-    '{[(lst)
-       "Return the tail of a list or `NIL` if not available."]})
+    {[(lst)
+      "Return the tail of a list or `NIL` if not available."]})
   (op closure)
   (op seta)
   (op jmp)
   (op loadc0)
   (op cons? 1 (λ (x) (cons? x))
-    '{[(value)
-       "Return `T` if the value is a cons cell, `NIL` otherwise."]})
+    {[(value)
+      "Return `T` if the value is a cons cell, `NIL` otherwise."]})
   (op brne)
   (op loadt)
   (op load0)
@@ -59,6 +59,9 @@
   (op brnn)
   (op load1)
   (op < -1 (λ rest (apply < rest))
+    {[(a . rest)
+      "Return `T` if the arguments are in strictly increasing order (next
+       one is greater than the previous one)."]}
     :cname "LT")
   (op add2)
   (op set-cdr! 2 (λ (x y) (set-cdr! x y)))
@@ -70,32 +73,32 @@
   (op cadr 1 (λ (x) (cadr x)))
   (op neg)
   (op nan? 1 (λ (x) (nan? x))
-    '{[(v)
-       "Return `T` if `v` is a floating point representation of NaN, either
-        negative or positive, `NIL` otherwise."]})
+    {[(v)
+      "Return `T` if `v` is a floating point representation of NaN, either
+       negative or positive, `NIL` otherwise."]})
   (op brbound)
   (op num? 1 (λ (x) (num? x))
-    '{[(v)
-       "Return `T` if `v` is of a numerical type, `NIL` otherwise.
+    {[(v)
+      "Return `T` if `v` is of a numerical type, `NIL` otherwise.
 
-        Numerical types include floating point, fixnum, bignum, etc.
-        Note: ironically, a NaN value is considered a number by this function
-        since it's only testing the _type_ of the value."]})
+       Numerical types include floating point, fixnum, bignum, etc.
+       Note: ironically, a NaN value is considered a number by this function
+       since it's only testing the _type_ of the value."]})
   (op fixnum? 1 (λ (x) (fixnum? x))
-    '{[(v)
-       "Return `T` if `v` is of a fixnum type, `NIL` otherwise."]})
+    {[(v)
+      "Return `T` if `v` is of a fixnum type, `NIL` otherwise."]})
   (op bound? 1 (λ (x) (bound? x))
-    '{[(symbol)
-       "Return `T` if `symbol` has a value associated with it, `NIL` otherwise."]})
+    {[(symbol)
+      "Return `T` if `symbol` has a value associated with it, `NIL` otherwise."]})
   (op builtin? 1 (λ (x) (builtin? x))
-    '{[(v)
-       "Return `T` if `v` is a built-in function, `NIL` otherwise."]})
+    {[(v)
+      "Return `T` if `v` is a built-in function, `NIL` otherwise."]})
   (op fn? 1 (λ (x) (fn? x))
-    '{[(v)
-       "Return `T` if `v` is a function, `NIL` otherwise."]})
+    {[(v)
+      "Return `T` if `v` is a function, `NIL` otherwise."]})
   (op vec? 1 (λ (x) (vec? x))
-    '{[(v)
-       "Return `T` if `v` is a vector, `NIL` otherwise."]})
+    {[(v)
+      "Return `T` if `v` is a vector, `NIL` otherwise."]})
   (op shift)
   (op set-car! 2 (λ (x y) (set-car! x y)))
   (op jmp.l)
@@ -106,33 +109,33 @@
   (op list T (λ rest rest))
   (op apply -2 (λ rest (apply apply rest)))
   (op + T (λ rest (apply + rest))
-    '{[(num…)
-       "Return sum of the numbers or `0` with no arguments."]}
+    {[rest
+      "Return sum of the numbers or `0` with no arguments."]}
     :cname "ADD")
   (op - -1 (λ rest (apply - rest))
     :cname "SUB")
   (op * T (λ rest (apply * rest))
-    '{[(num…)
-	     "Return product of the numbers or `1` with no arguments."]}
+    {[rest
+      "Return product of the numbers or `1` with no arguments."]}
 	:cname "MUL")
   (op / -1 (λ rest (apply / rest))
     :cname "DIV")
   (op div0 2 (λ rest (apply div0 rest)))
   (op = -1 (λ rest (apply = rest))
-    '{[(num…)
-	     "Numerical equality test.  Return `T` if all numbers are equal,
-	      `NIL` otherwise."]}
+    {[(a . rest)
+	  "Numerical equality test.  Return `T` if all numbers are equal,
+	   `NIL` otherwise."]}
 	:cname "NUMEQP")
   (op compare 2 (λ (x y) (compare x y))
-    '{[(x y)
-       "Return -1 if `x` is less than `y`, 0 if equal, and `1` if `y` is
-        greater than `x`.
+    {[(x y)
+      "Return -1 if `x` is less than `y`, 0 if equal, and `1` if `y` is
+       greater than `x`.
 
-        Examples:
+       Examples:
 
-            (compare 'a 'b)       → -1
-            (compare 1 1)         → 0
-            (compare \"b\" \"a\") → 1"]})
+           (compare 'a 'b)       → -1
+           (compare 1 1)         → 0
+           (compare \"b\" \"a\") → 1"]})
   (op argc)
   (op vec T (λ rest (apply vec rest)))
   (op aset! -3 (λ rest (apply aset! rest)))
@@ -148,13 +151,13 @@
   (op vargc)
   (op trycatch)
   (op for 3 (λ (a b f) (for a b (λ (x) (f x))))
-    '{[(min max fn)
-       "Call the function `fn` with a single integer argument, starting from
-        `min` and ending with `max`.
+    {[(min max fn)
+      "Call the function `fn` with a single integer argument, starting from
+       `min` and ending with `max`.
 
-        Examples:
+       Examples:
 
-            (for 0 2 (λ (i) (print (- 2 i)))) → 210"]})
+           (for 0 2 (λ (i) (print (- 2 i)))) → 210"]})
   (op tapply)
   (op sub2)
   (op argc.l)
@@ -164,18 +167,19 @@
   (op brne.l)
   (op brnn.l)
   (op aref -2 (λ rest (apply aref rest))
-    '{[(seq subscript…)
-       "Return the sequence element by the subscripts.  The sequence can be an
-        array, vector or a list.
+    {[(seq subscript0 . rest)
+      "Return the sequence element specified by the subscripts.  The sequence
+	   can be an array, vector, a list.  Multi-dimensional sequences
+	   of variating types are also supported.
 
-        Examples:
+       Examples:
 
-            (def a '((1 (2 (3)) 4)))
-            (aref a 0)     → (1 (2 (3)) 4)
-            (aref a 1)     → index 1 out of bounds
-            (aref a 0 0)   → 1
-            (aref a 0 1 0) → 2
-            (aref a 0 2)   → 4"]})
+           (def a '((1 #(2 (3)) 4)))
+           (aref a 0)     → (1 (2 (3)) 4)
+           (aref a 1)     → index 1 out of bounds
+           (aref a 0 0)   → 1
+           (aref a 0 1 0) → 2
+           (aref a 0 2)   → 4"]})
   (op box.l)
   (op optargs)
   (op dummy_eof)
@@ -201,9 +205,11 @@
             [argc (op-nargs op)]}
         (io-write c-header (str "\t" (op-cname op) ",\n"))
         (for-each (λ (doc)
-                    (write `(doc-for ,(cons lop (car doc)) ,(cadr doc))
-                           docs-ops)
-                    (io-write docs-ops "\n"))
+                    (let* {[args (car doc)]
+                           [sig (cons lop args)]
+                           [docstr (cadr doc)]}
+                      (write `(doc-for ,sig ,docstr) docs-ops)
+                      (io-write docs-ops "\n")))
                   (op-docs op))
         (put! op-to-byte lop (byte i))
         (when argc