From e058ca95e2372db415ae93c3e2a894be0ec354ed Mon Sep 17 00:00:00 2001 From: Klemen Pogacnik Date: Mon, 24 May 2021 14:39:40 +0200 Subject: [PATCH] Adding hello world python script. For testing reason a random script has been added to sandbox project. README has ben added too. Changed output text as requested by review. Closes-Bug: #123456789 Change-Id: I02bf7548330c5c42a4bf65da708f5c4dbc9de965 --- kemopq-test/README.txt | 1 + kemopq-test/hello_world.py | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 kemopq-test/README.txt create mode 100755 kemopq-test/hello_world.py diff --git a/kemopq-test/README.txt b/kemopq-test/README.txt new file mode 100644 index 000000000..28545eb53 --- /dev/null +++ b/kemopq-test/README.txt @@ -0,0 +1 @@ +Script can be run by running hello_world.py diff --git a/kemopq-test/hello_world.py b/kemopq-test/hello_world.py new file mode 100755 index 000000000..62a758401 --- /dev/null +++ b/kemopq-test/hello_world.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +def main(): + print("Hello to all children of the world!") + + +if __name__ == "__main__": + main()