• kbal
    link
    fedilink
    46 days ago
        if ( test == false )   
            x = 1
        else
            x != 1
    
    • @dohpaz42
      link
      English
      46 days ago

      Not sure what you’re trying to achieve with that else block, as it affects nothing.

      • kbal
        link
        fedilink
        56 days ago

        okay I fixed it

            if ( test == false )
                x = 1
            else
                assert( x != 1 )