I think there are some more differences here that could be mentioned?
- Julia has Boolean operators
|| and && that short-circuit but Fortran .and./.or. do not
- Julia
| and & will do integer bitwise operations and don't short-circuit, but in Fortran you need to use intrinsic functions to get that
I think there are some more differences here that could be mentioned?
||and&&that short-circuit but Fortran.and./.or.do not|and&will do integer bitwise operations and don't short-circuit, but in Fortran you need to use intrinsic functions to get that