Abstract but Transparent
Feature
Structure Assembly
To move 10 into EAX:
Assembly: mov eax, 10 ; Intel (AT&T: mov $10, %eax)
Seed: 10 => eax;
Strong Macro
In Seed we have several macro attributes.
They're @text, @res (not optimized),
@resa (like C's inline assembly), and @null
Near Assembly
In other high-level languages there are many control keywords,
such as if, else, switch,
but in Seed the primary comparison instruction is cmp


