diff options
author | Keith Miyake <keith.miyake@gmail.com> | 2018-10-06 23:43:50 -0700 |
---|---|---|
committer | Keith Miyake <keith.miyake@gmail.com> | 2018-10-06 23:43:50 -0700 |
commit | 9a8e722661c1afd0702e2174df54f8682b1fea44 (patch) | |
tree | c0291afc9d6e5b19c2a728009036a4a5d0892ff8 /julia.html.markdown | |
parent | 7bd6f99b6b85ee9977be9f1212a8799876e5743c (diff) |
[julia/en] divayprakash has an amazing eagle eye for function naming!
Diffstat (limited to 'julia.html.markdown')
-rw-r--r-- | julia.html.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/julia.html.markdown b/julia.html.markdown index 0bb629d3..2fe05c49 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -749,7 +749,7 @@ square_area(l) = l * l # square_area (generic function with 1 method) square_area(5) # => 25 # What happens when we feed square_area an integer? -codeNative(square_area, (Int32,), syntax = :intel) +code_native(square_area, (Int32,), syntax = :intel) # .text # ; Function square_area { # ; Location: REPL[116]:1 # Prologue @@ -765,7 +765,7 @@ codeNative(square_area, (Int32,), syntax = :intel) # nop dword ptr [rax + rax] # ;} -codeNative(square_area, (Float32,), syntax = :intel) +code_native(square_area, (Float32,), syntax = :intel) # .text # ; Function square_area { # ; Location: REPL[116]:1 @@ -780,7 +780,7 @@ codeNative(square_area, (Float32,), syntax = :intel) # nop word ptr [rax + rax] # ;} -codeNative(square_area, (Float64,), syntax = :intel) +code_native(square_area, (Float64,), syntax = :intel) # .text # ; Function square_area { # ; Location: REPL[116]:1 @@ -801,7 +801,7 @@ codeNative(square_area, (Float64,), syntax = :intel) circle_area(r) = pi * r * r # circle_area (generic function with 1 method) circle_area(5) # 78.53981633974483 -codeNative(circle_area, (Int32,), syntax = :intel) +code_native(circle_area, (Int32,), syntax = :intel) # .text # ; Function circle_area { # ; Location: REPL[121]:1 @@ -832,7 +832,7 @@ codeNative(circle_area, (Int32,), syntax = :intel) # nop dword ptr [rax] # ;} -codeNative(circle_area, (Float64,), syntax = :intel) +code_native(circle_area, (Float64,), syntax = :intel) # .text # ; Function circle_area { # ; Location: REPL[121]:1 |