~eda-qa/leaflang/misc

« back to all changes in this revision

Viewing changes to share/unit_tests/block/core_ops/boolean_ops.lfb

  • Committer: edA-qa mort-ora-y
  • Date: 2017-05-13 04:00:12 UTC
  • mfrom: (96.1.42 sortfile)
  • Revision ID: eda-qa@disemia.com-20170513040012-ieshuqv2vkjt0xc3
merging sortfile

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
var f = false
8
8
 
9
9
tb( t or f )
10
 
tb( f or f )
 
10
tb( f ∨ f )
11
11
tb( t and t )
12
 
tb( t and f )
 
12
tb( t ∧ f )
13
13
 
14
14
// these boolean ops have lower precedence than compare to provide easy combinations
15
15
tb( 1 < 5 or 5 < 4 )