diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-02-17 18:51:41 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-02-17 18:51:41 +0100 |
commit | ea1734c60e378d8777ad872354bd7dd90d50e1f7 (patch) | |
tree | d522c3c9260e5ff0a0717abe3e772c8274135365 /hello.py |
init
Diffstat (limited to 'hello.py')
-rw-r--r-- | hello.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..2ce8296 --- /dev/null +++ b/hello.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from genai!") + + +if __name__ == "__main__": + main() |