langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
|
|
@ -0,0 +1,5 @@
|
|||
x=2
|
||||
while test $x -le 8; do
|
||||
echo $x
|
||||
x=`expr $x + 2` || exit $?
|
||||
done
|
||||
|
|
@ -0,0 +1 @@
|
|||
for x in `jot - 2 8 2`; do echo $x; done
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
for (( x=2; $x<=8; x=$x+2 )); do
|
||||
printf "%d, " $x
|
||||
done
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
foreach x (`jot - 2 8 2`)
|
||||
echo $x
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue