Seed

Abstract but Transparent

Feature

Near Assembly

Structure Assembly

To move 10 into EAX:
Assembly: mov eax, 10 ; Intel (AT&T: mov $10, %eax)
Seed: 10 => eax;

Near Assembly

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

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

Let's start!