🚀

Julia Reference

A high-level, high-performance dynamic language for technical computing. Essential syntax and code samples for professional development.

Functions

f(x, y) = x + y

Types

struct Person name::String end

Arrays

a = [1, 2, 3] push!(a, 4)

Multiple Dispatch

meet(a::Cat, b::Dog) = "Fight"

Macros

@time sqrt(100)

Dicts

d = Dict("A"=>1, "B"=>2)