#(set-default-paper-size "letter")

\header {
    title = "Title"
    subtitle = "Subtitle"
    composer = "Composer (xxxx-yyyy)"
    piece = "Piece"
    instrument = "Instrument"
    copyright = "Copyright"
}

\version "2.6.3.1"

global = {
    \time 4/4
}

pianoRight = {
    \clef treble
    \global
    \set Staff.midiInstrument = "acoustic grand"
    \relative c'' {
        <<
        {
            c4 c b c
        } \\ {
            g4 a g g
        }
        >>
	\bar "|."
    }
}

pianoLeft = {
    \clef bass
    \global
    \set Staff.midiInstrument = "acoustic grand"
    \relative c' {
        <<
        {
            e4 f d e
        } \\ {
            c,4 f g c,
        }
        >>
        \bar "|."
    }
}

piano = {
    <<
    \new Staff \pianoRight
    \new Staff \pianoLeft
    >>
}

\score {
    \new PianoStaff \piano
    \layout {}
    \midi {\tempo 4=120}
}
