Skip to content

Commit

Permalink
Use emojis in feature list
Browse files Browse the repository at this point in the history
  • Loading branch information
nonperforming authored Oct 7, 2023
1 parent 7312afd commit b29801b
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,26 +114,26 @@ for a quick overview of the supported features.

| Name | Example | Supported |
| --------------- | ------------------------------- | --------- |
| If Else | `if..else..elif` | YES |
| Loop | `for/while/break/continue` | YES |
| Function | `def f(x,*args,y=1):` | YES |
| Subclass | `class A(B):` | YES |
| List | `[1, 2, 'a']` | YES |
| ListComp | `[i for i in range(5)]` | YES |
| Slice | `a[1:2], a[:2], a[1:]` | YES |
| Tuple | `(1, 2, 'a')` | YES |
| Dict | `{'a': 1, 'b': 2}` | YES |
| F-String | `f'value is {x}'` | YES |
| Unpacking | `a, b = 1, 2` | YES |
| Star Unpacking | `a, *b = [1, 2, 3]` | YES |
| Exception | `raise/try..catch` | YES |
| Dynamic Code | `eval()/exec()` | YES |
| Reflection | `hasattr()/getattr()/setattr()` | YES |
| Import | `import/from..import` | YES |
| Context Block | `with <expr> as <id>:` | YES |
| Type Annotation | `def f(a:int, b:float=1)` | YES |
| Generator | `yield i` | YES |
| Decorator | `@cache` | YES |
| If Else | `if..else..elif` | |
| Loop | `for/while/break/continue` | |
| Function | `def f(x,*args,y=1):` | |
| Subclass | `class A(B):` | |
| List | `[1, 2, 'a']` | |
| ListComp | `[i for i in range(5)]` | |
| Slice | `a[1:2], a[:2], a[1:]` | |
| Tuple | `(1, 2, 'a')` | |
| Dict | `{'a': 1, 'b': 2}` | |
| F-String | `f'value is {x}'` | |
| Unpacking | `a, b = 1, 2` | |
| Star Unpacking | `a, *b = [1, 2, 3]` | |
| Exception | `raise/try..catch` | |
| Dynamic Code | `eval()/exec()` | |
| Reflection | `hasattr()/getattr()/setattr()` | |
| Import | `import/from..import` | |
| Context Block | `with <expr> as <id>:` | |
| Type Annotation | `def f(a:int, b:float=1)` | |
| Generator | `yield i` | |
| Decorator | `@cache` | |

## Contribution

Expand Down

0 comments on commit b29801b

Please sign in to comment.