Introducere în Julia
James Fulton
Climate informatics researcher


Creat de Jeff Bezanson, Stefan Karpinski, Viral B. Shah și Alan Edelman
Julia a fost conceput să fie:

Julia poate fi descărcat de la:
Rulați Julia online:
Consola

Consola


În script.jl:
# Print the number 2
println(2)
# Print the sum of 1+2
println(1+2)
2
3
În script.jl:
# Print the number 2 <--- these are comments
println(2)
# Print the sum of 1+2 <--- these are comments
println(1+2)
2
3
În script.jl:
Print the number 2
println(2)
Print the sum of 1+2
println(1+2)
ERROR: LoadError: syntax: extra token "the" after end of expression
Stacktrace:
[1] top-level scope
@ ~/script.jl:1
În script.jl:
#=
=#
println(2)
2
În script.jl:
#=
Print the
number 2
=#
println(2)
2
Introducere în Julia