https://github.com/berzanorg/my-programming-language
A programming language based on a stripped down version of math.
https://github.com/berzanorg/my-programming-language
programming-language react repl
Last synced: 4 months ago
JSON representation
A programming language based on a stripped down version of math.
- Host: GitHub
- URL: https://github.com/berzanorg/my-programming-language
- Owner: berzanorg
- License: unlicense
- Created: 2023-10-09T17:19:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T21:11:13.000Z (over 2 years ago)
- Last Synced: 2025-05-21T17:41:25.579Z (8 months ago)
- Topics: programming-language, react, repl
- Language: TypeScript
- Homepage: https://berzanxyz.github.io/my-programming-language
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Programming Language
A REPL is live at [`berzanxyz.github.io`](https://berzanxyz.github.io/my-programming-language).
I've built an interpreted programming language that only supports adding and subtracting integers.
Code example: `42 + 8 - 4`
## Setup Development Environment
You need [Node](https://nodejs.org/) and [NPM](https://www.npmjs.com/) installed.
> If you already have [Docker](https://www.docker.com/) and [VS Code](https://code.visualstudio.com/) installed, after you open the repository in VS Code, it will ask you to reopen the project in a dev container.
## Run Development Server
```bash
npm run dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Make Production Build
```bash
npm run build
```