So in julia v0.3:
julia> @osx?print("A"):print("B")
A
But in julia 0.4:
julia> @osx?print("A"):print("B")
ERROR: wrong number of arguments
A space is now required after the "?"
julia> @osx? print("A"):print("B")
A
Is this intentional, or should I file a bug?
Regards
-
Avik
