Metadata-Version: 2.4
Name: pleasecompilerineedthis
Version: 0.1.2
Summary: PCINT, a tiny pseudo-compiler and REPL
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: playsound==1.2.2
Requires-Dist: yaspin
Dynamic: license-file

<h1>PCINT</h1>
honestly not even a compiler

## Installation
first install it from pip
```bash
pip install pleasecompilerineedthis
```

and then just run it
```bash
python -m pleasecompilerineedthis
```


## Example
```python
plz name = ask("Name please: ")
log("Hello, " + name + "!")
```
or view [example.pls](./example.pls)

## Reference

| name | description | python counterpart | example|
|------|-------------|--------------------|--------|
| `plz`  |defines a variable| [nothing] | `plz result = 1 + 1`
| `log`  |prints something | `print` | `log("result", result)`
| `ask` | asks for input | `input` | `input("Your name: ")`
| `anderdingus` | mention him anywhere for good luck | [nothing] | `log("please anderdingus")`

