Road to Julia 4: Packages, Files and Modules Packages Julia has an inbuilt package manager Pkg which aids in the (un)installation and updating of individual packages. Pkg can…Continue reading “Road to Julia 4: Packages, Files and Modules”…
Road to Julia 2: Variables, Types and Functions Variables In Julia, variables are names of values stored in the computer’s memory. They are instantiated by writing the name…Continue reading “Road to Julia 2: Variables, Types and Functions”…
Road to Julia 3: Loops and Conditionals Loops Loops are used in programming for evaluating the same expressions repeatedly. Julia supports two types of loops – while…Continue reading “Road to Julia 3: Loops and Conditionals”…
Writing ping() in Julia TL;DR: A simple cross-platform ping() function which returns true/false in Julia 1.x can be written Background In general, when testing…Continue reading “Writing ping() in Julia”…