Skip to content

Instantly share code, notes, and snippets.

@dataPulverizer
Created December 12, 2017 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dataPulverizer/ad8f788be14aaf20e8a93d5c00631fda to your computer and use it in GitHub Desktop.
Save dataPulverizer/ad8f788be14aaf20e8a93d5c00631fda to your computer and use it in GitHub Desktop.
Delegates in Julia
# Delegates in Julia
function makeFun(x::Float64)
return y::Float64 -> y^2 + x^2
end
ff = makeFun(4.0)
# (generic function with 1 method)
ff(5.0)
# 41.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment