We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
main.scm:
(import (scheme base) (scheme write) (srfi 8)) (receive (a b) (values 1 2) (begin (display a) (newline) (display b) (newline)))
srfi/8.sld:
(define-library (srfi 8) (import (scheme base)) (export receive) (include "8.scm"))
srfi/8.scm:
(define-syntax receive (syntax-rules () ((receive formals expression body ...) (call-with-values (lambda () expression) (lambda formals body ...)))))
Works with: skint -I ./ main.scm
skint -I ./ main.scm
But gives error with: skint -I ./ --program main.scm
skint -I ./ --program main.scm
The error is: Error: transformer: invalid identifier access (srfi 8) (srfi 8) ref
Error: transformer: invalid identifier access (srfi 8) (srfi 8) ref
It seems to also work with --script. Is this the default behaviour? Should it not work with --program?
The text was updated successfully, but these errors were encountered:
Hmm. Will look at it tomorrow, thanks.
Sorry, something went wrong.
No branches or pull requests
main.scm:
srfi/8.sld:
srfi/8.scm:
Works with:
skint -I ./ main.scm
But gives error with:
skint -I ./ --program main.scm
The error is:
Error: transformer: invalid identifier access (srfi 8) (srfi 8) ref
It seems to also work with --script. Is this the default behaviour? Should it not work with --program?
The text was updated successfully, but these errors were encountered: