Variables
In DryLang, variables are declared by direct assignment. No keywords like let or var are needed.
Declaration and Assignment
Variables are dynamically typed — you can reassign them to a different type:
Constants
Use cns to declare a constant that cannot be reassigned.