Gavin Wiggins

About  /  Notes  /  Photos

Print

Written on June 2, 2021

The print() function prints an undecorated text representation of an object. Similarly, the println() function prints text followed by a newline.

# Print text
julia> print("hello there")
hello there

# Print text followed by a newline
julia> println("hello there")
hello there

Gavin Wiggins © 2024.
Made on a Mac with Genja. Hosted on GitHub Pages.