An introduction to the Julia language, part 2
An introduction to the Julia language, part 2
Posted Sep 5, 2018 14:01 UTC (Wed) by leephillips (subscriber, #100450)In reply to: An introduction to the Julia language, part 2 by rsidd
Parent article: An introduction to the Julia language, part 2
By the way, a function composition operator was recently added to Julia:
(f ∘ g)(x) == f(g(x))
You can get it by typing \circ<tab> in the REPL if you want.
