Trying to build a forth runtime in C
 
 
 
forth/testfiles/if.forth

4 lines
55 B

: yesno IF ." yes" ELSE ." no" THEN ;
1 yesno
0 yesno