Easy Tutorial
❮ Julia Mathematical Functions Julia Environment ❯

Julia Tutorial

Julia is an open-source programming language licensed under the MIT License, available for free use by everyone.

Julia is a high-performance dynamic programming language designed for scientific computing.

Initially developed to meet the needs of high-performance numerical analysis and computational science, Julia does not require an interpreter and is fast.

Julia was first released in 2012 and supports various platforms: macOS, Windows, Linux, FreeBSD, Android.


Features of the Julia Language


Uses of the Julia Language

Julia is primarily used for numerical computation.


First Julia Program

Next, let's write our first Julia program, hello.jl (Julia file extension .jl), with the following code:

hello.jl File

println("Hello World!")

To execute Julia code, use the julia hello.jl command.

Executing the above code outputs:

$ julia hello.jl
Hello, World!

Reference Links

Julia Official Website: https://julialang.org/

Julia Chinese Manual: https://docs.juliacn.com/latest/

❮ Julia Mathematical Functions Julia Environment ❯