ZetCode

Julia Modules Tutorial

last modified March 3, 2025

In Julia, modules are used to organize code into separate namespaces. They help prevent naming conflicts and make code more modular and reusable. This tutorial covers basic definitions and practical examples of using modules in Julia.

A module is defined using the module keyword. It can contain functions, types, and other modules. Modules are imported using the using or import keywords.

Basic Module Definition

This example demonstrates how to define a basic module.

main.jl
module MyModule
    export greet
    greet() = println("Hello from MyModule!")
end

The export keyword makes the greet function available outside the module.

Using a Module

This example shows how to use a module and its exported functions.

main.jl
using .MyModule
greet()

The using keyword imports the MyModule module, and greet() is called to display the message.

Importing Specific Functions

This example demonstrates how to import specific functions from a module.

main.jl
import .MyModule: greet
greet()

The import keyword imports only the greet function from MyModule.

Nested Modules

This example shows how to define and use nested modules.

main.jl
module OuterModule
    module InnerModule
        export inner_greet
        inner_greet() = println("Hello from InnerModule!")
    end
end

using .OuterModule.InnerModule
inner_greet()

The InnerModule is nested inside OuterModule, and inner_greet() is called.

Module Aliasing

This example demonstrates how to alias a module for easier access.

main.jl
using .MyModule as MM
MM.greet()

The as keyword creates an alias MM for MyModule.

Module Precompilation

This example shows how to precompile a module for faster loading.

main.jl
module PrecompiledModule
    __precompile__(true)
    export precompiled_greet
    precompiled_greet() = println("Hello from PrecompiledModule!")
end

The __precompile__(true) directive enables precompilation for the module.

Module Documentation

This example demonstrates how to add documentation to a module.

main.jl
module DocumentedModule
    """
    This is a documented module.
    """
    export documented_greet
    documented_greet() = println("Hello from DocumentedModule!")
end

The triple-quoted string provides documentation for the module.

Module Constants

This example shows how to define and use constants within a module.

main.jl
module ConstantsModule
    export PI
    const PI = 3.14159
end

using .ConstantsModule
println("The value of PI is $PI")

The const keyword defines a constant PI within the module.

Module Testing

This example demonstrates how to write tests for a module.

main.jl
module TestModule
    export add
    add(x, y) = x + y
end

using Test
using .TestModule

@test add(2, 3) == 5

The @test macro is used to test the add function.

Best Practices for Modules

Source

Julia Modules Documentation

In this article, we have explored various examples of using modules in Julia, including basic definitions, nested modules, precompilation, and testing.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all Julia tutorials.