diff --git a/pancake/parser/README.md b/pancake/parser/README.md index 3275ef4e74..b7ce44aae1 100644 --- a/pancake/parser/README.md +++ b/pancake/parser/README.md @@ -2,6 +2,8 @@ The Pancake parser. [panConcreteExamplesScript.sml](panConcreteExamplesScript.sml): * Pancake concrete syntax examples +* 9th May 2023: Updated with function declarations +* March 2024: Updated with shared memory instructions [panLexerScript.sml](panLexerScript.sml): * The beginnings of a lexer for the Pancake language. diff --git a/pancake/parser/panConcreteExamplesScript.sml b/pancake/parser/panConcreteExamplesScript.sml index 1ef9b6e149..8f4e47317b 100644 --- a/pancake/parser/panConcreteExamplesScript.sml +++ b/pancake/parser/panConcreteExamplesScript.sml @@ -1,6 +1,7 @@ (** * Pancake concrete syntax examples * 9th May 2023: Updated with function declarations + * March 2024: Updated with shared memory instructions *) open HolKernel Parse boolLib bossLib stringLib numLib intLib; open preamble panPtreeConversionTheory;