File: allocation_file.jl

package info (click to toggle)
julia 1.5.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 91,132 kB
  • sloc: lisp: 278,486; ansic: 60,186; cpp: 29,801; sh: 2,403; makefile: 1,998; pascal: 1,313; objc: 647; javascript: 516; asm: 226; python: 161; xml: 34
file content (8 lines) | stat: -rw-r--r-- 114 bytes parent folder | download
1
2
3
4
5
6
7
8
g(x) = x + 123456
function f(x)
    []
    Base.invokelatest(g, 0)
    Base.invokelatest(g, x)
    []
end
f(1.23)