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