Comment
Skip a line comment
Section titled “Skip a line 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”.
Skip a block comment
Section titled “Skip a block 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”.
Skip a shebang
Section titled “Skip a shebang”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”.