or
Use an or
operator
Given a file named “main.scm” with:
When I successfully run scheme main.scm
Then the stdout should contain exactly “<output>”.
Examples
values | output |
---|---|
B | |
#f | B |
#t | A |
#f #f | B |
#f #t | A |
Return the first true value
Given a file named “main.scm” with:
When I successfully run scheme main.scm
Then the stdout should contain exactly “A”.
Examples
values |
---|
65 |
65 #f |
#f 65 |