Metadata-Version: 2.4
Name: pleasecompilerineedthis
Version: 0.1.1
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
Requires-Dist: yaspin
Dynamic: license-file

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

## Installation
first install the requirements
```bash
pip install -r requirements.txt
```


## 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: ")`

