ZetCode

Julia Functions Tutorial

last modified March 3, 2025

Functions in Julia are reusable blocks of code that perform specific tasks. They help organize code, improve readability, and reduce redundancy. This tutorial covers basic and advanced usage of functions in Julia with examples.

Functions are defined using the function keyword and can accept arguments and return values. Julia supports both named and anonymous functions.

Basic Function Definition

This example demonstrates how to define a simple function in Julia.

main.jl
function greet()
    println("Hello there!")
end

The greet function prints "Hello, there!" when called.

Function with Arguments

This example shows how to define a function that accepts arguments.

main.jl
function add(x, y)
    return x + y
end

The add function takes two arguments and returns their sum.

Anonymous Functions

This example demonstrates how to define an anonymous function.

main.jl
square = x -> x^2

The square function squares its input. Anonymous functions are useful for short, one-off operations.

Multiple Return Values

This example shows how to return multiple values from a function.

main.jl
function divide(x, y)
    return x / y, x % y
end

The divide function returns both the quotient and remainder.

Default Arguments

This example demonstrates how to define a function with default arguments.

main.jl
function greet(name="Guest")
    println("Hello, $name!")
end

The greet function prints "Hello, Guest!" if no argument is provided.

Keyword Arguments

This example shows how to define a function with keyword arguments.

main.jl
function rectangle_area(; length=1, width=1)
    return length * width
end

The rectangle_area function calculates the area of a rectangle using keyword arguments.

Variable Number of Arguments

This example demonstrates how to define a function that accepts a variable number of arguments.

main.jl
function sum_all(args...)
    return sum(args)
end

The sum_all function sums all provided arguments.

Recursive Functions

This example shows how to define a recursive function.

main.jl
function factorial(n)
    return n == 0 ? 1 : n * factorial(n - 1)
end

The factorial function calculates the factorial of a number recursively.

Higher-Order Functions

This example demonstrates how to pass functions as arguments.

main.jl
function apply(func, x)
    return func(x)
end

The apply function applies a given function to an argument.

Closures

This example shows how to create a closure in Julia.

main.jl
function make_counter()
    count = 0
    return () -> (count += 1)
end

The make_counter function returns a closure that increments a counter each time it is called.

Best Practices for Functions

Source

Julia Functions Documentation

In this article, we have explored various examples of using functions in Julia, including basic definitions, advanced features, and best practices.

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.