diff options
Diffstat (limited to 'julia.html.markdown')
| -rw-r--r-- | julia.html.markdown | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/julia.html.markdown b/julia.html.markdown index eabb988e..5e9ef1b8 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -46,6 +46,13 @@ div(5, 2)  # => 2    # for a truncated result, use div  # Enforce precedence with parentheses  (1 + 3) * 2  # => 8 +# Julia (unlike Python for instance) has integer under/overflow +10^19      # => -8446744073709551616 +# use bigint or floating point to avoid this +big(10)^19 # => 10000000000000000000 +1e19       # => 1.0e19 +10.0^19    # => 1.0e19 +  # Bitwise Operators  ~2         # => -3 # bitwise not  3 & 5      # => 1  # bitwise and | 
