blep
v0.0.2
Published
A toy language that defines variables with boop keyword and prints on screen with bark
Readme
Blep Language 🐶
A simple programming language where you define variables with boop keyword and print them with bark keyword. Compiler built in JavaScript.
boop a = 3;
boop b = 9;
bark(a + b);How to use
The compiler is built over JavaScript so it requires Node.js installed.
Install Compiler
npm install -g blepRun Blep Code
Create hello.blep file with following content
boop a = 3;
boop b = 9;
bark(a + b);Execute the code with
blep hello.blepOutput
12Local Setup
git clone https://github.com/saurabhdaware/blep.git
cd blep/
yarn
yarn link # this register blep command in your terminal
blep examples/hello-world.blepYou can try changing the code in src/index.js
Note: It's just a toy so bunch of obvious things may not work
UseCases
- Absolutely NONE
This is a toy @saurabhdaware made because he was bored.
