Edit

kc3-lang/kc3/test/ic3/if.out.expected

Branch :

  • test/ic3/if.out.expected
  • if true
      1
    else
      2
    end
    1
    if true
      1
    end
    1
    if false
      1
    else
      2
    end
    2
    if false
      1
    end
    void
    if true && true
      1 + 1
      2 + 2
    else
      3 + 3
      4 + 4
    end
    4
    if true && false
      1 + 1
      2 + 2
    else
      3 + 3
      4 + 4
    end
    8