\version "2.10.33"
\include "english.ly"

\header {
    title = "נקד"
    composer = "Yo R"
}

melody = \relative c'' \context Voice = "singer"
{
    \key f\major
    \time 4/4
    \clef treble 
    r2 r4 r8 c,
    af'4 \times 2/3 {f d8} f4 \times 2/3 {r4 c8}
    \bar "|."

}

text = \lyricmode {
    כַ
    בוּ הַ אוֹֹ רות וַ
}

\score{<<
    \new Staff<< \melody  >>
    \lyricsto "singer"\new Lyrics \text
    >>
}
\layout {}
