User Guide

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

Tutorial

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

Examples

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