Writing your own julia
functions
- functions can be defined in
.jl
files, command line, or notebooks - scoping is as expected
Verbose:
- start with
function
keyword followed by function name and input args end
is a keyword that tells the function to return most recent statement result if noreturn
Compact:
Anonymous/lambda function