slc/examples/if.slc

13 lines
164 B
Plaintext
Raw Normal View History

2025-01-08 01:59:07 +01:00
// prefixed builtins with '#'
// when writing a compiler - like a c-like language
:if
()
#asm(jz else$)
{}
#asm(jmp ifend$)
#asm(else$:)
[]
#asm(ifend$:)
;