Skip to content

Instantly share code, notes, and snippets.

View moustachio-belvedere's full-sized avatar

Jonathan Louis Kaplan moustachio-belvedere

View GitHub Profile
julia> dostuff(a::Real) = println(2*a);
julia> dostuff(2.0);
4.0
julia> dostuff(2);
4
julia> dostuff("2");
ERROR: MethodError: no method matching dostuff(::String)