Learn KanpScript
Zero se Rangbaaj banne ka safar.
1. Variables (Humari Cheezein)
In Kanpuriya culture, we don't say "I have", we say "Hum rakhte hain". It shows power/bhaukaal.
Standard Python: x = 10
KanpScript:
hum_rakhte_hain x = 10
hum_rakhte_hain naam = "Pintu"
2. Speaking Up (Bolna)
To print output, just say bol.
bol "Kya haal hai be?"
bol x
3. Decisions (Agar-Warna)
Life is full of choices. If (agar) this happens, do this. Else (warna), do that.
agar x > 5 {
bol "Jalwa hai bhai ka"
} warna {
bol "Thoda weak hai mamla"
}
4. Loops (Jabtak)
Keep doing it until (jabtak) the work is done.
hum_rakhte_hain count = 5
jabtak count > 0 {
bol count
count = count - 1
}