後置記法
Postfix notation
一般的な言語
Standard programming language
for(i=0;i<10;i++){ printf("abc"); }
Forthの後置記法
Postfix notation with Forth
0 1 10 { (abc) show } for