Lichen

tests/logical.py

153:a32be37ae7dc
2016-10-30 Paul Boddie Added result conversion for access instructions, fixed __get_class_and_load.
     1 def f(a, b, c):     2     return a and b and c     3      4 def g(a, b, c):     5     return a or b or c     6      7 def h(a, b, c):     8     return a and b or c     9     10 def i(a, b, c):    11     return a or b and c    12     13 def j(a, b, c):    14     return f(a, b, c) and g(a, b, c) or c