Skip to content

Instantly share code, notes, and snippets.

@foca
Created July 28, 2008 04:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foca/2840 to your computer and use it in GitHub Desktop.
Save foca/2840 to your computer and use it in GitHub Desktop.
grammar Example
rule reminder
"tell me " time "to " anything:(.+)
end
rule time
("at" / "on") " " word+ &"to "
end
rule word
[a-zA-Z0-9]+ (" " / "." / "," / ":" / ";")?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment