This commit is contained in:
BLUELOVETH 2023-05-29 22:32:51 +08:00
parent 201b0bb60b
commit f76c4e69d6
3 changed files with 9 additions and 1 deletions

View File

@ -18,6 +18,8 @@ pkpy is extremely easy to embed via a single header file `pocketpy.h`, without e
Please see https://pocketpy.dev for details or try [Live Demo](https://pocketpy.dev/static/web/).
<a href="https://www.buymeacoffee.com/blueloveTH"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=blueloveTH&button_colour=FF5F5F&font_colour=ffffff&font_family=Bree&outline_colour=000000&coffee_colour=FFDD00" /></a>
## Quick start
Download the `pocketpy.h` on our [GitHub Release](https://github.com/blueloveTH/pocketpy/releases) page.

View File

@ -14,6 +14,8 @@ pocketpy是一个轻量级的Python解释器为嵌入至游戏引擎而设计
你可以 [在浏览器中体验](https://pocketpy.dev/static/web/) pocketpy的交互式界面REPL
<a href="https://www.buymeacoffee.com/blueloveTH"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=blueloveTH&button_colour=FF5F5F&font_colour=ffffff&font_family=Bree&outline_colour=000000&coffee_colour=FFDD00" /></a>
## 快速上手
你可以在 [Github Release](https://github.com/blueloveTH/pocketpy/releases) 页面下载`pocketpy.h`

View File

@ -24,4 +24,8 @@ def is_prime(x):
primes = [i for i in range(2, 20) if is_prime(i)]
print(primes)
# [2, 3, 5, 7, 11, 13, 17, 19]
```
```
## Sponsor me
<a href="https://www.buymeacoffee.com/blueloveTH"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=blueloveTH&button_colour=FF5F5F&font_colour=ffffff&font_family=Bree&outline_colour=000000&coffee_colour=FFDD00" /></a>