In DryLang, variables are declared by direct assignment. No keywords like let or var are needed.
Variables are dynamically typed — you can reassign them to a different type:
There are two ways to declare constants that cannot be reassigned:
cns keyword:dryLang natively handles missing or unresolvable data using the unknown keyword, replacing null and undefined.