Skip to main content

Bhailang - The language by and for Indian bros!

 Hi folks!

If you ever get bored of the same, everyday, hard-coded keyword coding style, take a look here -

- a toy language created by two Indian 'bros' - Aniket Singh from Amazon and Rishabh Tripathi from Groww.

The language combines "Bhai", a word in Hindi for 'brother' and "lang", short for 'Language', popular in the coding culture, to derive it's name.

The developers said "Bhailang" came up as idea from an insider joke.

Syntax

It is written in TypeScript, and has it's own well-defined syntax, but every statement contains the word 'bhai'.

The programs of bhailang begin with a "hi bhai" statement and end with "bye bhai".

bhailang.png
Bhailang (Source: bhailang.js.org)

Keywords

Bhailang uses keyword in Hindi language for it's purpose of programming.

Numbers and strings are used and created like other languages. While, Boolean values of True and False are represented by "sahi" and "galat" instead.

Compilation and Execution

If your code is error-free and executes correctly the compiler returns with a message saying Shandaar bhai! in green.

successful execution in bhailang
Successful execution (Source: bhailang.js.org)

But if the compiler encounters an error, it returns with a message saying Arre Bhai Bhai Bhai !!! in red.

error encountered in bhailang
Error encountered (Source: bhailang.js.org)

Installation instructions can be referred to from the website of Bhailang.

Reactions

The language has gone viral on the internet, even if just for fun, and receiving various comments from users around the world.

A user on twitter replied:

and another one said:

You can check out #bhailang on Twitter to follow up more. It's quite active at the time.

And memes like these too are surfacing:


Try it Out

If you want to really use Bhailang for projects, or just for fun, visit the website: bhailang.js.org. It is the official website of the language created by the developers. They also have an online playground there, just in case if you want to try it before downloading and installing the language to your systems.

For more details

You can visit the website or github page of "Bhailang":
Website: bhailang.js.org


Comments

Popular posts from this blog

AtlasApp CLI (v1.0)

Hi Guys, I recently started learning Python and with the little experience I had, I created a small CLI desktop (windows or maybe cross-platform) (Linux and MacOS users please test it and reply) Application. So everyone and anyone reading this blog, please please test it and reply to me how you liked it. I'll be making a GUI version of the same and will keep updating it regularly for betterments. You Can download it from here :   ðŸ‘‡         https://drive.google.com/file/d/1kYseZYT2d1QkCUyRk4QKKuhxlLCd4UlO/view?usp=sharing                                                                                                               ...

Hello World in 30 Programming Languages (Part 1)

How many programming languages do you think you know? Think a lot? Let's Check that out... 1. C: The Mother of all modern programming languages C Developed by: Dennis Ritchie Developed in: 1972 HelloWorld.c #include<stdio.h> int main(void){ printf("Hello World!"); return 0; } 2. C++: The Mother's still young and charming daughter C++ (C Plus Plus) Developed by: Bjarne Stroustrup Developed in: 1985 HelloWorld.cpp #include<iostream> using namespace std; int main(){ cout << "Hello World!"; return 0; } 3. C#: The Daughter's quite similar friend C# (C Sharp) Developed by: Anders Hejlsberg and Mads Torgersen Developed in: 2000 HelloWorld.cs using System; namespace HelloWorldApp{ class HelloWorld{ static void Main(strings[] args){ Console.WriteLine("Hello World!"); } } } 4. COBOL: It's Business Class Developed by: US Department of Defense Developed in: 1959 HelloWorld.cbl IDENTIFICATI...