Ô Nuit (Jean-Philippe Rameau)/Répétition

De Wicri Musique

Cette page introduit une versions transposée pour utilisation en phase d'apprentissage de Ô nuit de Jean-Philippe Rameau.

Voix d'alto

Version à 2 voix + piano

Page 1Page 2

Transposition

cat <<... >transpoUnTon.lex

%%
a        printf ("g");
b        printf ("a");
bes      printf ("aes");
c        printf ("bes");
d        printf ("c");
e        printf ("d");
f        printf ("ees");
g        printf ("f");
"\\\\"[^ \\n]+  ECHO;
"\\^"[^ \\n]+  ECHO;
%%
main()
{
  yylex();
}
...
lex transpoUnTon.lex

gcc lex.yy.c -ll -o transpoUnTon