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 theprintlnfunction
Helpful links
More of Julialang
- How to test code in JuliaLang?
- How to use channels in JuliaLang?
- How to work with rational numbers in JuliaLang?
- How to use try catch in JuliaLang?
- How to add a legend to a plot in JuliaLang?
- How to create a histogram in JuliaLang?
- How to install JuliaLang?
- How to use enums in JuliaLang?
- How to use dictionaries in JuliaLang?
- How to use tuples in JuliaLang?
See more codes...