Metadata-Version: 2.1
Name: python-goto
Version: 0.1.1
Summary: Add goto to Python
Author: The Lumberjack
Author-email: just4now@example.com
Keywords: goto
Description-Content-Type: text/markdown
License-File: licence.txt

# AddGoto

This package adds a revolutionary feature to Python: the Goto statement<br>
It allows you to feel the essence of early days of C while using a modern language

## Installation

```
pip install python-goto
```

## How to use

```python
from python_goto import goto

x: int = 0
while x < 10:
    x += 1
    print(x)
    goto(line=4)
```

## Limitations

The line you want to jump to must have no indent blocks

For example, the following code won't work

```python
from python_goto import goto

def count_down(n: int) -> None:
    while n > 0:
        n -= 1
        print(n)
        goto(line=4)
```

This limitations will be fixed in the upcomming updated
