9951 explained code solutions for 126 technologies


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:

  1. println - a function that prints a string to the console
  2. "Hello World" - a string that is passed to the println function

Helpful links

Edit this code on GitHub