Difference between revisions of "Talk:Interview Dusoulier (2000) Rayward"

From LIS History
(Lex script)
(Lex script)
Line 4: Line 4:
 
cat <<... >convert.lex
 
cat <<... >convert.lex
 
%%
 
%%
 
+
^"{{;Smallcaps"  printf("{{;Petites capitales");
 
%%
 
%%
 
main()
 
main()
Line 11: Line 11:
 
}
 
}
 
...
 
...
 +
lex convert.lex -ll -o concert
 
</source>
 
</source>

Revision as of 15:06, 16 April 2021

Lex script

cat <<... >convert.lex
%%
^"{{;Smallcaps"   printf("{{;Petites capitales");
%%
main()
{
  yylex();
}
...
lex convert.lex -ll -o concert