From b7b5a0881ce72bd1249439b7d36977c0bbc24943 Mon Sep 17 00:00:00 2001 From: NoTag Date: Tue, 11 Feb 2025 10:53:51 +0000 Subject: [PATCH] * added a misc/archive/hello.py example git-svn-id: https://svn.exactcode.de/t2/trunk@73998 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- misc/archive/hello.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 misc/archive/hello.py diff --git a/misc/archive/hello.py b/misc/archive/hello.py new file mode 100644 index 0000000000..255c4c02a8 --- /dev/null +++ b/misc/archive/hello.py @@ -0,0 +1,11 @@ +# --- T2-COPYRIGHT-BEGIN --- +# t2/misc/archive/hello.py +# Copyright (C) 2025 The T2 SDE Project +# SPDX-License-Identifier: GPL-2.0 +# --- T2-COPYRIGHT-END --- + +def main(): + print("Hello from Python") + +if __name__ == "__main__": + main()