Help for this page

Select Code to Download


  1. or download this
    # user adds first clause
    [==,a,b]  # implies if a == b, prefix notation
    ...
    # and a new clause
    [or,[and,[==,a,b],[==,c,d]],[and,[==,e,f],[==,g,h]]
    etc
    
  2. or download this
    ((a==b)and(c==d))or((e==f)and(g==h))