Try it out
https://play.kotlinlang.org/embed?short=HwbKXZOup&theme=darcula&from=1&to=27
Example
Kbhai {
bhai bol "Hello World ..."
val a = 3
var b = 0
bhai jabTak {
yaSahiHai { b < 5 }
toYeKar {
bhai bol b
bhai agar {
yaSahiHai { b == a }
toYeKar { bhai bol "b is equal to a" }
}
b += 1
}
}
}
Use as dependency
Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.kaiwalyakhasnis:KBhailang:0.0.3'
}