User:Megan Hoogenboom/assignment2: Difference between revisions
(Created page with "<source lang="text"> cat << END @head { \$time_sig 4/4 \$tempo 120 } @body { @channel 1 { \$patch 16 \$octave 7 \$length 2 END for ((i=0; i<=10; i++)) ...") |
No edit summary |
||
Line 49: | Line 49: | ||
END | END | ||
</source> | </source> | ||
[[Category: 2011 P1.01]] |
Revision as of 10:38, 19 October 2010
cat << END
@head {
\$time_sig 4/4
\$tempo 120
}
@body {
@channel 1 {
\$patch 16
\$octave 7
\$length 2
END
for ((i=0; i<=10; i++))
do
echo g
done
cat << END
}
@channel 2 {
\$patch 16
\$octave 5
\$length 16
END
ja="a b b c"
nee="g g f c"
oke="a b c d e f g"
oja="g f e d c b a"
for ((i=0; i<=3; i++))
do
echo $ja $nee
done
for ((i=0; i<=3; i++))
do
echo $oke $oja
done
cat << END
}
}
END