Metadata-Version: 2.4
Name: withfinal
Version: 0.1.1
Summary: Final state
Author-email: howShouldIChooseMyUsername <trademark2179@gmail.com>
License: MIT
Keywords: with,finally
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# This is just a simple code from try - finally :

## install

```cmd
pip install withfinal
```

## usage

```python
from withfinal import Final
import sys

def doSomething() :
    print("doSomething")

with Final :
    doSomething()
    print("This is same as 'finally'")

with Final :
    print("Final = FIFO(Queue)")

print(10)

sys.exit()

# output
>>> 10
>>> doSomething
>>> This is same as 'finally'
>>> Final = FIFO(Queue)
```

#### Note
- try use `finally` without `try`!
