Hare ==== Welcome to the Hare programming language! .. code-block:: hare use fmt; use os; export fn main() void = { const user = os::getenv("USER") as str; fmt::printfln("Welcome to the Hare documentation, {}!", user)!; }; Getting started --------------- To get started with Hare, see the :ref:`installation`. Standard library reference -------------------------- For the standard library reference documentation, see `docs.harelang.org `_. Community resources ------------------- For information about participating in the Hare community, such as: * Where to get help * Participating in development * Code of Conduct and conduct enforcement See :ref:`community`. Further reading --------------- `harelang.org `_ is the homepage for Hare and includes the blog and other resources, such as the source code and language specification. .. toctree:: :maxdepth: 2 :caption: Contents install/index usage/index faq community/index extlib Standard library reference ➜ Language specification ➜ process/index