For control structure for the F program.
シェルプログラミングのための for 制御コマンドです。
C言語のような使い方はもちろん、パイプラインとしても使うことができます。F言語の shared変数を最大限に利用できるようになっています。
Content: Add from 1 to 10.
example.1 normal use
for.z '(1, 10, 1)' | let.z '(+#1)'
example.2 like as the C
let.z '$sum = 0';
for.z '($i=1, $i<=10, $i+=1)' '{
let.z "$sum += $i";
}'
This is the For control utility command for Shell
programming. Naturally, it can use such as the C
programming language and can use also as pipe-line.
It has come to be able to use Shared variable of
the F programming language to the full.