User Guide

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

Tutorial

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

Examples

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