Julia cheatsheet

Synopsis

Julia cheatsheet

Run a project

Suppose you've inherited / downloaded a project with a project.toml file.

Run a script (e.g. some tests): julia --project=. test/runtests.jl

Hack around (we take TheAlgorithms as an example)

julia> using TheAlgorithms 
julia> x = [1, 3, 5]
julia> bubble_sort!(x)

47 Words

2021-10-15