How can I update to this version ? Is it sure enough to do it ? If 0.5 is not released, when it will be ?
https://github.com/JuliaLang/julia/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+roadmap or https://github.com/JuliaLang/julia/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+0.5 doesn't help Le mardi 31 mai 2016 09:49:38 UTC+2, Mauro a écrit : > > This works on 0.5, where anonymous functions are almost like normal > functions now. > > On Tue, 2016-05-31 at 09:26, Femto Trader <[email protected] > <javascript:>> wrote: > > Hello, > > > > I'm trying to define an anonymous function > > > > > > julia> (args...) -> begin > > println("hello anonymous func with args") > > end > > (anonymous function) > > > > works correctly > > > > A "classic" with keywords arguments can be define using > > > > julia> function f(args...; kwargs...) > > println("hello classic func with args and kwargs") > > end > > f (generic function with 1 method) > > > > But it doesn't work with keyword arguments > > > > > > julia> (args...; kwargs...) -> begin > > println("hello anonymous func with args and kwargs") > > end > > ERROR: syntax: "begin > > args... > > kwargs... > > end" is not a valid function argument name > > > > > > I don't understand if that's an issue or a misunderstanding from my > side. > > > > Any idea ? > > > > > > Kind regards >
