julialangCreating "Hello World" program in JuliaLang
Creating a "Hello World" program in JuliaLang is a simple task. The following code block will print "Hello World" to the console:
println("Hello World")
The output of this code will be:
Hello World
The code consists of two parts:
println
- a function that prints a string to the console"Hello World"
- a string that is passed to theprintln
function
Helpful links
More of Julialang
- How to add a legend to a plot in JuliaLang?
- How to solve differential equations in JuliaLang?
- How to use the JuliaLang package manager?
- How to use tuples in JuliaLang?
- How to use dictionaries in JuliaLang?
- How to use assert in JuliaLang?
- How to set up logging in JuliaLang?
- How to create functions in JuliaLang?
- How to create plots in JuliaLang?
- How to animate in JuliaLang?
See more codes...