picrin-scheme / picrin

lightweight scheme interpreter
MIT License
414 stars 35 forks source link

picrin segfaults #308

Closed KeenS closed 7 months ago

KeenS commented 9 years ago

https://twitter.com/SaitoAtsushi/status/649597871172423680?lang=ja

dcurrie commented 8 years ago

It's odd... when I try this I get:

e$ picrin
> (import (srfi 1))
#undefined
> (every = '(1 2) '(1 2))
error: uninitialized global variable: unknown
> ^D

In fact, I don't seem to be able to import into the repl at all:

e$ picrin
> read
#<proc 0x109bbe2c0>
> bitwise-and
error: uninitialized global variable: unknown
> (import (srfi 60))
#undefined
> bitwise-and
error: uninitialized global variable: unknown
> ^D