import bool import or (true | false) => c expect c --- import bool import or (true | true) => c expect c --- import bool import or (true | true) => c expect c --- import bool import or (false | false) => c don't expect c --- proc { unless bla: blubb unless blubb: test } expect blubb don't expect test --- // test if a certain indentation problem is fixed proc { bla ( x ) } bla $multiline => proc { a b $multiline } expect a --- import iota proc { for $x in iota(2): print $x } expect (print 1) expect (print 2) don't expect (print 3) --- import lines_honoringBrackets proc { for $x in lines_honoringBrackets( a b ): print $x } expect (print a) expect (print b)