Hi, I'm wondering if there's some easy way to show the full signature for a
method (including the types), *without* typing them all out like this:
"""
funtime(fun::Int64, t::Float64)
Best way to have a fun time...
"""
function funtime(fun::Int64, t::Float64)
return "funtime"
endMaybe there's some metamacro or something that I'm missing? I couldn't find it in the docs. Cheers
