Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 705 Bytes

creating--hello-world--program-in-julialang.md

File metadata and controls

21 lines (18 loc) · 705 Bytes

Creating "Hello World" program in JuliaLang

// 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:

  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

onelinerhub: Creating "Hello World" program in JuliaLang