Skip to content

Comment

Given a file named “main.scm” with:

(import (scheme base))
; foo
(write-u8 65)

When I successfully run stak main.scm

Then the stdout should contain exactly “A”.

Given a file named “main.scm” with:

(import (scheme base))
#|
foo
|#
(write-u8 65)

When I successfully run stak main.scm

Then the stdout should contain exactly “A”.

Given a file named “main.scm” with:

#!/usr/bin/env stak
(import (scheme base))
(write-u8 65)

When I successfully run stak main.scm

Then the stdout should contain exactly “A”.