From 7e3ecd09c06c7cd078a8fe49ba9a587e6adcbf2e Mon Sep 17 00:00:00 2001 From: Manan Jain Date: Mon, 30 Mar 2026 00:53:17 +0530 Subject: [PATCH] Added Basic Python Example --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index b37e1f07..e85521f0 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,16 @@ __ERROR: return 1; } ``` +## Basic Python Usage Example + +Here is a simple example demonstrating Python execution in PocketPy: + +```python +print("Hello from PocketPy!") + +for i in range(3): + print(i) +``` ## Features