Metadata-Version: 2.4
Name: catLang
Version: 0.0.8
Summary: catLang: Custom transpiller from catLang code into Python code.
Author: catLang
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: regex>=1.0.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: summary

E is a solo programming language made for Python. It transpiles E to Python and can run code via `.exec` (string) or `.exec_file` (file path).

```python
import catLang

# Execute CatLang code from a string
catLang.exc("""
for(i in 1 ... 50):
    if(i%5==0):
        println(i)
    end;
end;
""")

# Execute a .cat source file
catLang.exec_file(r"Path\To\File.cat")
```

```csharp
for(i in 1 ... 5):
    if(i%5==0):
        println(i)
    end;
end; // example code
```
