Workflow Tips

Workflow Tips

Here are some tips for working with Julia efficiently.

REPL-based workflow

As already elaborated in Interacting With Julia, Julia's REPL provides rich functionality that facilitates an efficient interactive workflow. Here are some tips that might further enhance your experience at the command line.

A basic editor/REPL workflow

The most basic Julia workflows involve using a text editor in conjunction with the julia command line. A common pattern includes the following elements:

  • Put code under development in a temporary module. Create a file, say Tmp.jl, and include within it

    module Tmp
    
    <your definitions here>
    
    end
  • Put your test code in another f