technoblogy / ulisp-riscv

A version of the Lisp programming language for RISC-V based boards.
MIT License
27 stars 2 forks source link

Length of one-dimensional array returns a negative size #4

Closed technoblogy closed 3 years ago

technoblogy commented 3 years ago
> (defvar a (make-array 10 :initial-element 1))
a

> a
#(1 1 1 1 1 1 1 1 1 1)

> (length a)
-10

Thanks to Fausto Saporito for reporting this.