Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Comment définir la grammaire du programme dans IntelliJ?
  2. Sachant que :
  3. DECLARE: 'declare';
  4. AND: 'and';
  5. RETAIN: 'retain';
  6. PARO: '(';
  7. PARF: ')';
  8. POIV: ';';
  9. REP:'*';
  10.  
  11. Programme: DECLARE AND RETAIN
  12. PARO VarDecl POIV PARF REP # Pour ( VarDecl ; ) *
  13. PARO Instruction PARF REP
  14. ClauseDefault
  15. ;
  16.  
  17. Programme: DECLARE AND RETAIN
  18. PARO FctDel PARF REP # Pour ( FctDel ) *
  19. PARO Instruction PARF REP
  20. ClauseDefault
  21. ;
  22.  
  23. *** OU ALORS ***
  24.  
  25. Programme: DECLARE AND RETAIN
  26. PARO VarDecl POIV PARF REP # Pour ( VarDecl ; ) *
  27. PARO FctDel PARF REP # Pour ( FctDel ) *
  28. PARO Instruction PARF REP
  29. ClauseDefault
  30. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement