Source code for main

"""Entry point for the ai-python sample application."""

[docs] def main() -> None: """Print a greeting to stdout.""" print("Hello, world!")
if __name__ == "__main__": main()