User:Megan Hoogenboom/assignment2

From XPUB & Lens-Based wiki
< User:Megan Hoogenboom
Revision as of 11:24, 19 October 2010 by Megan Hoogenboom (talk | contribs) (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++)) ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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