Hi,
Trying to port tests to miniPicoLisp I needed to copy some
definitions from lib/misc.l from pico to mini, and this is what I found:
1) Many definitions don't appear in pico. Is it intented ? If so, why ?
2) Discrepancy in the $dat implementation:
mini
(format (pack (car S))) # Year
(or (format (pack (cadr S))) 0) # Month
(or (format (pack (caddr S))) 0) ) ) # Day
pico
(format (car S)) # Year
(or (format (cadr S)) 0) # Month
(or (format (caddr S)) 0) ) ) # Day
Tests of $dat written for picoLisp don't pass without the pack in miniPicoLisp.
That's because the format function in mini doesn't accept lists.
Just to mention my findings. It may be intented for the sake of
simplicity of mini.
chri
--
UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe