langs a-z

This commit is contained in:
Ingy döt Net 2013-04-10 22:43:41 -07:00
parent db842d013d
commit d066446780
11389 changed files with 98361 additions and 1020 deletions

View file

@ -0,0 +1,5 @@
x=2
while test $x -le 8; do
echo $x
x=`expr $x + 2` || exit $?
done

View file

@ -0,0 +1 @@
for x in `jot - 2 8 2`; do echo $x; done

View file

@ -0,0 +1,3 @@
for (( x=2; $x<=8; x=$x+2 )); do
printf "%d, " $x
done

View file

@ -0,0 +1,3 @@
foreach x (`jot - 2 8 2`)
echo $x
end