| http://www.w3.org/ns/prov#value | - What is exciting me about the new grammar, is that I find it extremely compact and easy to modify.Here is a sample of the new grammar taken from the recent 0.6 release of Heron :public static Rule Field = Store(attribute, (Name + NoFail(Opt(TypeDecl) + Eos)));public static Rule FunDecl = Store(fundecl, Name + ArgList + Opt(TypeDecl));public static Rule EOSOrCodeBlock = Eos | CodeBlock;public s
|