• Running Julia: Type julia in your terminal to start the interactive session.
  • Running Scripts: Use include("script.jl") within the REPL to run a file.
  • Help Mode: Type ? at the prompt to get documentation (e.g., ?println).
  • Package Mode: Type ] to enter the package manager mode to add, remove, or update packages.
  • Shell Mode: Type ; to run system shell commands (e.g., ls or dir) directly within the Julia REPL.
  • To use module functions: first import Module to import the module, then Module.fn(x) to use the functions.
  • To include Sub-Modules and Code: include("EnergyModel.jl") or include("MyModule.jl) is always used at the top of each file to include ENERGY 2100's custom sub-modules or code. 
  • To load Packages: using Module loads the package to use its functionalities directly. To import all exported Module functions into the current namespace, using Module. For example, using DataFrames or using CSV.