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 work with rational numbers in JuliaLang?
- How to test code in JuliaLang?
- How to append to an array in JuliaLang?
- How to use tuples in JuliaLang?
- How to use regular expressions in JuliaLang?
- How to use try catch in JuliaLang?
- How to calculate the mean in JuliaLang?
- How to round numbers in JuliaLang?
- How to create plots in JuliaLang?
- How to measure execution time in JuliaLang?
See more codes...