User:Megan Hoogenboom/assignment: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "<source lang="text"> cat << END @head { \$time_sig 4/4 \$tempo 120 } @body { @channel 1 { \$patch 16 \$octave 7 \$length 16 END for ((i=0; i<=12; i++)) ...")
 
(Blanked the page)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<source lang="text">


cat << END
@head {
\$time_sig 4/4
\$tempo 120
}
@body {
@channel 1 {
\$patch 16
\$octave 7
\$length 16
END
        for ((i=0; i<=12; i++))
        do
        echo c c c r c c r c r c c r
        done
cat << END
    }
     
@channel 2 {
\$patch 16
\$octave 5
\$length 16
END
        pat="c c c r c c r c r c c r "
        for ((i=0; i<=12; i++))
        do
        echo $pat
        pat=${pat:2}${pat::2}
        done
#mijn ding:
#      lala="cccrccrcrccr"
#        lala2="c c c r c c r c r c c r"
#        for ((i=0; i<=12; i++))
#        do
#        echo ${lala2:$i} ${lala:$i:1}
#        done
cat << END
}
}
END
</source>

Latest revision as of 11:39, 19 October 2010