PYC is an interpreted C-like programming language written with Python 3.
This repo also contains a demo editor, built using ReactJS on the frontend (hosted on Vercel) and FastAPI on the backend (hosted on Fly.io), allows you to write and test code in PYC. Test out PYC here!
- Initializing variables
- Evaluating expressions
- Control structures
- Functions
- Arrays
- C-like syntax
See the full documentation here.
To clone this repository and run a program:
git clone https://github.com/876pol/pyc.git
cd pyc
python pyc examples/hello_world.pyscMore sample programs can be found in /examples.