From b5b7b5edd70549bb2b88d99e594576c4ddb479ae Mon Sep 17 00:00:00 2001 From: Vadim Date: Wed, 10 Sep 2025 17:55:53 +0200 Subject: [PATCH] add Hello.py example --- README.md | 1 + hello.py | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 hello.py diff --git a/README.md b/README.md index 8fc8bc3..4ca0b23 100644 --- a/README.md +++ b/README.md @@ -7,4 +7,5 @@ Hello, world! 1 + 1 ``` +Repository cloned and tested on 2025-09-10 by Vadi diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..5be1ace --- /dev/null +++ b/hello.py @@ -0,0 +1,2 @@ +text = "Hello, world!" +print(text) \ No newline at end of file