You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After that, a chicken complains that check:proc is unbound, and there's a similar fix for that: (export (check check:proc))
It is important to do an (export (check check:mode)), which is called an "indirect export", rather than doing a simple (export check:mode), because the latter breaks encapsulation by allowing external access to the check:mode variable, while the former does not.
The text was updated successfully, but these errors were encountered:
When running the simplest of tests, like
(check (+ 1 1) => 2), I get an error:The fix is to
(export (check check:mode).After that, a chicken complains that
check:procis unbound, and there's a similar fix for that:(export (check check:proc))It is important to do an
(export (check check:mode)), which is called an "indirect export", rather than doing a simple(export check:mode), because the latter breaks encapsulation by allowing external access to thecheck:modevariable, while the former does not.The text was updated successfully, but these errors were encountered: