Declaring Variables

Declare variables with dhoro and print with lekho:

dhoro number = 10 // number is variable which value is assigned 10
lekho(number) // prints 10

Use meaningful names and string interpolation/concatenation:

dhoro nam = "Mahfuz"
lekho("Shagotom, " + nam) // prints Shagotom, Mahfuz