User Guide
Before starting the tutorial, complete the Installation and Quick Start sections.
Tutorial
julia> import MyPkg51julia> MyPkg51.hello()"Hello, World!"
Examples
import MyPkg51
text_1 = MyPkg51.hello()
text_2 = "Goodbye, World!"
text_1 * " " * text_2"Hello, World! Goodbye, World!"