Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
blueloveTH committed Jun 11, 2023
1 parent 206302a commit 1550152
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ 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`
Expand Down
3 changes: 2 additions & 1 deletion docs/features/differences.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ The easiest way to test a feature is to [try it on your browser](https://pocketp
6. `__ne__` is not required. Define `__eq__` is enough.
7. Raw string cannot have boundary quotes in it, even escaped. See [#55](https://github.com/blueloveTH/pocketpy/issues/55).
8. In a starred unpacked assignment, e.g. `a, b, *c = x`, the starred variable can only be presented in the last position. `a, *b, c = x` is not supported.
9. `a < b < c` does not work as you expected. Use `a < b and b < c` instead. **(available in main branch now)**
9. `a < b < c` does not work as you expected. Use `a < b and b < c` instead. **(available in main branch now)**
10. A `Tab` is equivalent to 4 spaces. You can mix `Tab` and spaces in indentation, but it is not recommended.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ print(primes)

## Sponsor me

https://github.com/sponsors/blueloveTH
You can sponsor me via [Github Sponsors](https://github.com/sponsors/blueloveTH).

0 comments on commit 1550152

Please sign in to comment.