Command line
Get an argument
Given a file named “main.scm” with:
When I successfully run scheme main.scm hello
Then the stdout should contain “hello”.
Get two arguments
Given a file named “main.scm” with:
When I successfully run scheme main.scm hello world
Then the stdout should contain “hello”
And the stdout should contain “world”.