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
This commit is contained in:
Klemen Pogacnik
2021-05-24 14:39:40 +02:00
parent 89fb6115c4
commit e058ca95e2
2 changed files with 9 additions and 0 deletions

1
kemopq-test/README.txt Normal file
View File

@@ -0,0 +1 @@
Script can be run by running hello_world.py

8
kemopq-test/hello_world.py Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python
def main():
print("Hello to all children of the world!")
if __name__ == "__main__":
main()