User Guide

Before starting the tutorial, complete the Installation and Quick Start sections.

Tutorial

julia> import MyPkg53
julia> MyPkg53.hello()"Hello, World!"

Examples

import MyPkg53
text_1 = MyPkg53.hello()
text_2 = "Goodbye, World!"
text_1 * " " * text_2
"Hello, World! Goodbye, World!"