From 6569e4f91ae17456f0d54248a63f422e62216ae3 Mon Sep 17 00:00:00 2001 From: Ong Jai Sheng Date: Tue, 25 Nov 2025 17:57:37 -0500 Subject: [PATCH] Grammar error, 'is' to 'as' Corrected formatting and clarified explanation regarding line continuation in STIMPL expressions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 02815aa..2559b6d 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Sequence(Assign(Variable("five"), IntLiteral(10)),\ are expressions that have a value of 1 and type of _integer_. -> Note: We have to use the `\` when we break a single STIMPL expression across multiple lines because we are using the Python interpreter to parse our STIMPL programs. Because the Python language is sensitive to line breaks and indentation, the `\` at the end of the line is used to tell Python that this line "continues" on the next line and makes sure that the Python parser does not treat it is a normal end-of-line. +> Note: We have to use the `\` when we break a single STIMPL expression across multiple lines because we are using the Python interpreter to parse our STIMPL programs. Because the Python language is sensitive to line breaks and indentation, the `\` at the end of the line is used to tell Python that this line "continues" on the next line and makes sure that the Python parser does not treat it as a normal end-of-line. Yes, STIMPL supports empty `Program`s and `Sequence`s. The value and type of such a `Program`/`Sequence` is `None` and _unit_, respectively.