/10

The examples and exercises in Julia programming language.

Primary LanguageJuliaMIT LicenseMIT

𝖈𝖔𝖚𝖗𝖘𝖊-𝖏𝖚𝖑𝖎𝖆

Programming in Julia from zero to hero.

The introductory course, examples, and exercises in Julia programming language. Originally written for personal needs but may be useful for other people.

Overview

  • How to install Julia
  • How rto use Julia interactive REPL
  • How to create a package (package structre)
    • str, test, Project.toml, Manifest.toml
  • Comments
  • Print the value
  • Basic types
  • Loops (iteratiog)
    • for
    • while
  • Conditionals (branching)
  • Basic functions
  • Basic containers
    • Array
    • Dictionary
    • Set
    • Vector
    • Tuple
  • Convert string to number
  • Format strings
  • Concatenate strings
  • Concatenate arrays
    • vcat, hcat,
  • Read and write files
  • Round numeric values
    • round, ceil, floor
  • Generate random numbers
    • rand(), Random

Resources