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 |