4.1 型について

全ての型は、Any という型からの “派生” だそうである。

function myadd(x,y)# x と y の型名は共に Any
  x+y
end
function myadd(x::Int, y::Int)
  x+y
end



桂田 祐史