Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a bug in values within file lazy.rkt. #727

Merged
merged 1 commit into from Jul 11, 2014
Merged

Fixed a bug in values within file lazy.rkt. #727

merged 1 commit into from Jul 11, 2014

Commits on Jul 11, 2014

  1. Fixed a bug in values within file lazy.rkt.

    The issue was that when `values` was used with a single input, that input was being forced too early.
    Now code such as:
    (! (letrec-values ([(x) (values (list y))] [(y) (values 1)]) (car x))  )
    should produce 1 instead of #<undefined>.
    
    Some simple test cases were also added.
    wluker committed Jul 11, 2014
    Copy the full SHA
    8f5b569 View commit details
    Browse the repository at this point in the history