How to use function in REPL without module name

You can either do

using MyModule: my_function

or export my_function from your module.

1 Like