julia> foo = "abc"; bar = "bac"; zoo = "234";

julia> if foo == "abc" && bar == "bac" && zoo != "123"
           println("Please see
http://docs.julialang.org/en/latest/manual/control-flow/";)
       end
Please see http://docs.julialang.org/en/latest/manual/control-flow/

On Thu, Mar 5, 2015 at 6:57 PM, Julia User <[email protected]> wrote:

> hi,
>
> julia 0.4
>
> what is the best way to do something similar as in python
>
> if foo == 'abc' and bar == 'bac' and zoo != '123':
>   # do something
>
>
>
> if foo == 'abc' and bar == 'bac' or zoo == '123':
>   # do something
>
>
>
> Thanks
>
>

Reply via email to