Use `@defn` to define constants. This works similarly to `EQU` found in most
other assemblers.
`@defn` takes two arguments: a label, followed by an expression.
```
@defn SCALE_FACTOR, 2
@echo 11 * SCALE_FACTOR ; Prints "22"
```
```
Global1:
Global2:
@echo Global1.LOCAL_CONSTANT ; Prints "2"
@echo Global2.LOCAL_CONSTANT ; Prints "4"
```
```
@defn Global.LOCAL_CONSTANT, 9
Global:
```