Socket
Socket
Sign inDemoInstall

blep

Package Overview
Dependencies
12
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    blep

A toy language that defines variables with boop keyword and prints on screen with bark


Version published
Weekly downloads
3
Maintainers
1
Install size
1.42 MB
Created
Weekly downloads
 

Readme

Source

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 blep

Run Blep Code

Create hello.blep file with following content

boop a = 3;
boop b = 9;
bark(a + b);

Execute the code with

blep hello.blep

Output

12

Local 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.blep

You 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.

FAQs

Last updated on 14 Sep 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc