User Guide

Before starting the tutorial, complete the Installation section. Feature requests and bug reports are handled through GitHub Issues.

Tutorial

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

Examples

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