What is the %macro
directive?
```macro` directive allows you to define macros whose body spans over multiple lines.
For example:
%macro hello 2
dq %1
dq %2
%endmacro
; Instantiation:
hello 42,1337
; substituted for:
; dq 42
; dq 1337