Consider the following S9 function:
<c> string a = "ola"; int s9() -> 0 {
a!
} </c>
The Postfix code for the above function is as follows:
<asm>
RODATA ALIGN LABEL zum ;; deveria ser automático STR "ola"
DATA ALIGN LABEL a ID zum ;; deveria ser automático
TEXT ALIGN GLOBL _main, FUNC LABEL _main ENTER 0 ADDRV a EXTRN prints CALL prints TRASH 4 INT 0 POP LEAVE RET </asm>