RosettaCodeData/Task/Variable-size-Get/Julia/variable-size-get.julia

9 lines
58 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
julia> sizeof(Int8)
1
julia> t = 1
1
julia> sizeof(t)
2014-01-17 05:32:22 +00:00
8