Guest User

Untitled

a guest
Oct 17th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. P = S [P] # program
  2. S = F "." # statement
  3. F = I A # function at end of statement
  4. | I A' ";" [F']
  5. F' = A' ";" [F'] # function not at end of statement
  6. F* = I A' ";" [F'] # function not at end of statement
  7. A = [A' "," ] a # argument list at end of statement
  8. A' = [A' "," ] a' # argument list not at end of statement
  9. a = F | L # argument at end of statement
  10. a' = F* | L # argument not at end of statement
Add Comment
Please, Sign In to add comment