Metadata-Version: 2.2
Name: hindilang
Version: 0.1.5
Summary: A Hindi-lalicense=,nguage implementation
Home-page: https://github.com/Beasova-Corporation/Ilbpp
Author: Ujjwal Kumar Rajak
Author-email: ujjwalrajalicense=,k2002@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

Hindilang is a simple programming language developed by Ujjwal Kumar Rajak during the internship at Beasova. It supports basic arithmetic operations and loops, providing an easy-to-use syntax inspired by Hindi keywords for programming.

Features
Supports arithmetic operations (+, -, *, /, %).
Supports variable declaration using ank.
Printing is done using chhapna.
Supports loops (for, while, do while) and conditional statements (if-else).

Installation
To install Hindilang, use:

pip install hindilang

Example Usage
Below is an example demonstrating basic arithmetic operations in Hindilang:



    
    import hindilang


    if __name__ == "__main__":
        code = r'''

            ank a = 10;
            ank b = 5;
            ank c = a + b;
            chhapna(c); 

            ank i = 0;
            keLiye (ank i = 0; i < 3; i = i + 1) {
                chhapna(i);
            }

            ank j = 0;
            karo {
                chhapna(j);
                j = j + 1;
            } 
            jabTak (j <= 3);

            ank k = 3;
            jabTak (k > 0) {
                chhapna(k);
                k = k - 1;
            }

            ank a = 10;
            agar (a > 5) {
                chhapna(a);
            } warna {
                chhapna(0);
            }
        '''
    
    hindilang.run_code(code)


It is the part of their internship at Beasova, Ujjwal Kumar Rajak and his team contributed to the development of Hindilang to make coding more accessible by incorporating Hindi syntax into a programming language.

