Getting Started =============== Your first Lager Python program ------------------------------- As is tradition, we'll start with a hello world program. .. code-block:: python :caption: hello.py :name: Hello world print('Hello, world!') Save this as ``hello.py``. Then, we'll run it using ``lager python hello.py`` .. code-block:: console ➜ lager python hello.py Hello, world! With any luck, `Hello, world!` will be printed to your terminal. This may not seem very exciting, but the code actually ran on your gateway, and we've just scratched the surface of what Lager Python can do.