全ての型は、Any という型からの “派生” だそうである。
function myadd(x,y)# x と y の型名は共に Any x+y end
function myadd(x::Int, y::Int) x+y end