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