From bb12486ca25c8e02fd00fea8e4afcc4a65532709 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Sun, 25 Aug 2024 02:47:44 +0000 Subject: [PATCH] Update Examples --- Examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples.md b/Examples.md index 35819ba..108282d 100644 --- a/Examples.md +++ b/Examples.md @@ -627,9 +627,9 @@ fn main x_cube + x_squared + x //! Here we encounter two important Husht points. - //! (1) Since there is only a single expression following the - //! `let z=`, without the `scope` keyword this would just - //! amount to `let z = 2 * x` + //! (1) Since there is only a single expression + //! following the `let z=`, without the `scope` + //! keyword this would just amount to `let z = 2 * x` //! (2) The final semicolon is allowed and preserved by Husht to //! suppress the return value from the scope, but returning //! the last expression from a scope is the default for Husht