Bawal Code

Hindi में Programming का स्वाद - Experience Programming in Hindi

🇮🇳

Hindi Keywords

Use familiar Hindi words like 'ye', 'bol', 'agar' for programming

Real-time Execution

See your code results instantly with our secure interpreter

🛡️

Safe & Secure

Built-in security measures prevent malicious code execution

📚

Rich Templates

Learn with comprehensive examples covering all language features

Code Templates

Variables & Arithmetic
Learn variable declaration and basic math operations
bawal suru

ye pehla_sankhya = 20;
ye dusra_sankhya = 10;
ye jod = pehla_sankhya + dusra_sankhya;
ye antar = pehla_sankhya - dusra_sankhya;
ye gunafal = pehla_sankhya * dusra_sankhya;
ye bhag = pehla_sankhya / dusra_sankhya;

bol "जोड़: " + jod;
bol "अंतर: " + antar;
bol "गुणफल: " + gunafal;
bol "भाग: " + bhag;

bawal khatam
String Operations
Working with text and string concatenation
bawal suru

ye pehla_naam = "Bawal";
ye antim_naam = "Code";
ye abhivadan = "नमस्ते, ";
ye pura_naam = pehla_naam + " " + antim_naam;

bol abhivadan + pura_naam + "!";
bol "दोनों नाम मिलाकर: " + (pehla_naam + antim_naam);

bawal khatam
1
2
3
4
5
6
7
8
9
10
Lines: 1 | Characters: 0Press Ctrl+Enter to compile quickly
Output
Ready
Your output will appear here after compilation...
📦

📦 Now on NPM!

अपने Node.js projects में Bawal Code का उपयोग करें! हमने इसे एक standalone package के रूप में publish किया है।

npm i @anubhav_codes/bawal-code
NPM Guide देखें →