fork download
  1. %{
  2. #include <stdio.h>
  3. #include "y.tab.h" // Include the header generated by YACC
  4. #include <stdlib.h> // For atof
  5. %}
  6.  
  7. %%
  8.  
  9. // Match numbers and return DIGIT token
  10. [0-9]+ {
  11. yylval.dval = atof(yytext); // Convert string to double
  12. return DIGIT; // Return DIGIT token
  13. }
  14.  
  15. // Match newline character
  16. \n {
  17. return '\n'; // Return newline character
  18. }
  19.  
  20. // Match any other character and return it
  21. . {
  22. return yytext[0]; // Return the character itself
  23. }
  24.  
  25. %%
  26.  
  27. // Main function to call the parser
  28. int main() {
  29. return yyparse(); // Start parsing
  30. }
  31.  
  32. // Error handling function
  33. void yyerror(char *s) {
  34. fprintf(stderr, "Error: %s\n", s); // Print error message
  35. }
Success #stdin #stdout #stderr 0.02s 6872KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/HCZrBA/prog:2:1: Syntax error: Operator expected
ERROR: /home/HCZrBA/prog:35:0: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit