标签: julia
在范围,实施,性能和使用方面。
function test1(x) return x + 1 end
test2(x) = x + 1
test3 = function (x) return x + 1 end
test4 = x -> x + 1