#julia
Read more stories on Hashnode
Articles with this tag
# https://github.com/JuliaPlots/PlotUtils.jl/blob/master/src/colorschemes.jl abstract type AbstractColorList end abstract type ColorGradient <:...
Install Julia All official Julia binaries produce portable installations. Once installed, the directory in which Julia was installed can be moved to a...
Module Modules in Julia help organize code into coherent units. They are delimited syntactically inside module NameOfModule ... end.Typically, in...
Composite types are called records, structs, or objects in various languages. struct Foo bar baz::Int qux::Float64 end foo = Foo("Hello,...
Char and String A Char value represents a single character c = 'x' d = Int('x') # 120 e = Char(120) # 'x' f = '\u2200' # '∀': Unicode U+2200...
Functions ∑(n) = sum(1:n) ∑(3) # Output: 6 ∑(100) # Output: 5050 Unicode variable and function names ∑ are allowed. Julia functions can be defined...