JuliaGizmos / Escher.jl

Composable Web UIs in Julia
https://juliagizmos.github.io/Escher.jl
Other
335 stars 63 forks source link

0.4 deprecations break functionality in Escher #87

Closed mdcfrancis closed 8 years ago

mdcfrancis commented 8 years ago

https://github.com/shashi/Escher.jl/commit/87975dc64ad118afd405c53bed6404e07f1db9c6#commitcomment-13263356

mdcfrancis commented 8 years ago
f( arg::Array ) = println( arg )
f( arg... ) = f( collect( arg))
f( arg ) = f( [arg] )

f( "hello" )
f( ["hello","world"])
f( "hello", "world")

Actually why was this changed in the first place ? I don't see and deprecation warnings here.

shashi commented 8 years ago

@mdcfrancis what about f( ("hello", "world") )

shashi commented 8 years ago

fix incoming

mdcfrancis commented 8 years ago

Thanks