Difference between revisions of "Talk:Interview Dusoulier (2000) Rayward"
From LIS History
(Created page with "==Lex script== <source lang="sh"> cat <<... >convert.lex %% %% main() { yylex(); } </source>") |
(→Lex script) |
||
Line 10: | Line 10: | ||
yylex(); | yylex(); | ||
} | } | ||
+ | ... | ||
</source> | </source> |
Revision as of 15:02, 16 April 2021
Lex script
cat <<... >convert.lex
%%
%%
main()
{
yylex();
}
...