Metadata-Version: 2.1
Name: goto-py
Version: 1.1.2
Summary: This package allows you to go back to a certain line
Home-page: https://github.com/Kev-in123/goto-py
Author: Kev-in123
Author-email: kevinchoi005@gmail.com
License: UNKNOWN
Project-URL: Issue tracker, https://github.com/Kev-in123/goto-py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# goto.py

This package allows you to go back to a certain line.

## Installation

Stable version:

```
pip install goto-py
```

Development version:

```
pip install git+https://github.com/Kev-in123/goto-py
```

## Example Usage

```python
from goto-py import goto
print("hi")
goto(2)
```

