>>> using PkgTemplates
>>> t = Template(user="YOUR_GITHUB_USERNAME", author="", dir=".", julia=VERSION,
plugins=[
License(; name="MIT"),
Git(),
GitHubActions(),
Documenter{GitHubActions}()
]
)
>>> t("demo4")
>>> using demo4
>>> ]
>>> add demo4
or
>>> using Pkg
>>> Pkg.add("demo4")
>>> ]
>>> add
demo4 is the simplest example to show how build a package in Julia
>>> using demo4
>>> power2(2)
4
>>> power3(2)
8
To register the package : Link