Classful Commands
Command can also be defined with a class, instead of a function.
For example, this command:
examples/hello.py
import arc
@arc.command
def hello(name: str):
"""Greets someone by name"""
arc.print(f"Hello {name}!")
hello()
Could be written as: