Advertisement
Guest User

Untitled

a guest
Oct 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. %option noyywrap
  2.  
  3. %{
  4. #include <unistd.h>
  5. %}
  6.  
  7. %%
  8. [1-9][0-9]+ printf("Integer detected.");
  9. %%
  10.  
  11. main()
  12. {
  13. yylex();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement