I think it would help to have cleaner code if we could write ```julia map!(x \to x^2, A) # where \to is replaced by its symbol ```` instead of ```julia map!(x -> x^2, A) ````