kemcholang
v1.2.7
Published
A Programming Language For Gujjus - A fun programming language written in typescript - Coding with a touch of fun
Downloads
6
Maintainers
Readme
Welcome to kemcholang
- A Programming Language For Gujjus,
- Coding with a touch of fun
- A fun programming language written in typescript
Usage
import execute from "kemcholang";
let code = `kem cho
aa che a = 20
aa che b = 30
aa che c = 70
jo (a > b){
jo(a > c){
batavo "a is greater"
}
nahitar{
batavo "c is greater"
}
}
ka ( b > c ) {
batavo "b is greater"
}
nahitar{
batavo "c is greater"
}
aavjo`;
try {
let result = execute(code);
console.log(result);
} catch (err) {
console.log(err.name + " : " + err.message);
}