OILS
/
spec
/ comments.test.sh
View on Github
|
oilshell.org
11 lines, 2 significant
1
#
2
# NOTE: The test harness isn't good for this test; it strips lines that start
3
# with #
4
5
#### comment
6
echo foo
#comment
7
## stdout: foo
8
9
#### not a comment without leading space x
10
echo foo#not_comment
11
## stdout: foo#not_comment