I think this deserves an own topic. *You* should post here syntax that looks like duplicate or you think it could use already existing keyword. (mark with* # identical *or *# replacement*) Rule of thumb - *the less special syntax the better*.
# identical # replace ' , ' with ' ; ' in arrays ? [1, 2, 3, 4] [1; 2; 3; 4] # identical # replace ' = ' with ' in ' in for loops ? for i = 1:10 for i in 1:10 # replacement # replace ' -> ' with ' = ' in anonymous functions ? (a, b, c) -> a + b + c (a, b, c) = a + b + c
