uhmanoa-transpiler-project / shaka-scheme

The official repository for the UH Manoa Transpiler Project's Scheme interpreter, Shaka Scheme.
32 stars 24 forks source link

Incorrect printout for last element of vector #71

Open CinchBlue opened 6 years ago

CinchBlue commented 6 years ago

Here is a log of input to the current commit of Shaka Scheme (7b67f427f68d0b037f3f5e50d24e2ee46e557d48)'s REPL of main.cpp.

$ ./shaka-scheme-repl-0.1.exe
Welcome to Shaka Scheme!
> (define a (lambda (x) x))
#<procedure>
> a
#<procedure>
> (a 1)
1
> #(a)
#(0x4aedea0)
> #('a b c)
#((quote a) b 0x4bc76c0)