Skip to content

Stak base library

Given a file named “main.scm” with:

(import (stak base))
(when (procedure? error)
(error "foo"))

When I run stak main.scm

Then the exit status should not be 0.

Given a file named “main.scm” with:

(import (stak base) (stak io))
(when (procedure? error)
(error "foo"))

When I run stak main.scm

Then the exit status should not be 0

And the stderr should contain “foo”.