Pastorius - The Chicken

A place for established members to share music privately.

Moderators: MattKingUSA, khz

Forum rules
Any musical works in this forum are private and copyrighted by their respective owners. You may not copy, distribute, or create derivative works without the composer's explicit permission.
Post Reply
studio32

Pastorius - The Chicken

Post by studio32 »

Code: Select all

\header {
  title = "The Chicken"
  instrument = "bass"
  composer = "Jaco Pastorius"
}

global = {
  \key bes \major
  \time 4/4
}

electricBass = \relative c, {
  \global
  % Music follows here.
  \repeat unfold 4  { bes8. bes16 d d8 es16~es16 es16 f8 g8 bes8}
}

\score {
  \new Staff \with {
    midiInstrument = "electric bass (finger)"
    instrumentName = "Electric bass"
  } { \clef "bass_8" \electricBass }
  \layout { }
  \midi {
    \context {
      \Score
      tempoWholesPerMinute = #(ly:make-moment 100 4)
    }
  }
}
Post Reply