Julia Installation Instructions for PC Windows

Installation of Julia

 

 

 

 

Testing Julia

julia> 123 / 234
0.5256410256410257

julia> sqrt(sin(1.0)^2)
0.8414709848078965
julia> for i = 1:5
           println("Hello world")
       end
Hello world
Hello world
Hello world
Hello world
Hello world

Package installation

import Pkg
Pkg.add("PyPlot")
Pkg.add("DifferentialEquations")
Pkg.add("Juno")
using PyPlot

Testing packages

using PyPlot

x = 0:0.01:10;
y = @. sin(x^2 / 5);

plot(x,y);
grid()

 

Installing Atom and Juno