ZetCode

Julia Variables Tutorial

last modified March 3, 2025

Variables in Julia are used to store data values. They are dynamically typed, meaning you don't need to declare their type explicitly. This tutorial covers basic definitions and practical examples of using variables in Julia.

Variables can store various data types, including numbers, strings, and arrays. They are case-sensitive and can contain Unicode characters.

Basic Variable Assignment

This example demonstrates how to assign a value to a variable.

main.jl
x = 10

The variable x is assigned the value 10.

String Variable

This example shows how to assign a string to a variable.

main.jl
name = "Julia"

The variable name is assigned the string "Julia".

Multiple Assignments

This example demonstrates how to assign multiple values to multiple variables.

main.jl
a, b, c = 1, 2, 3

The variables a, b, and c are assigned the values 1, 2, and 3 respectively.

Variable Reassignment

This example shows how to reassign a value to a variable.

main.jl
x = 5
x = 10

The variable x is first assigned 5, then reassigned to 10.

Type Inference

This example demonstrates Julia's type inference.

main.jl
y = 3.14

The variable y is inferred to be of type Float64.

Unicode Variable Names

This example shows how to use Unicode characters in variable names.

main.jl
δ = 0.0001

The variable δ is assigned the value 0.0001.

Constants

This example demonstrates how to declare a constant.

main.jl
const PI = 3.14159

The constant PI is assigned the value 3.14159.

Global and Local Variables

This example shows the difference between global and local variables.

main.jl
x = 10  # Global variable
function foo()
    y = 5  # Local variable
    println(x + y)
end
foo()

The global variable x is accessible inside the function foo, while y is local to foo.

Best Practices for Variables

Source

Julia Documentation

In this article, we have explored various examples of using variables in Julia, including basic assignments, type inference, 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.