// plain
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
onelinerhub: Creating "Hello World" program in JuliaLang