File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -194,11 +194,11 @@ print $p
194194$p * 6
195195```
196196
197- 1 . Line 1: The integer 5 is assigned to ` $p ` , but the return value of the
197+ 1 . Line 1: The integer 7 is assigned to ` $p ` , but the return value of the
198198 [ ` let ` command] ( /commands/docs/let.md ) itself is ` null ` . However, because it is not the last
199199 value in the expression, it is not displayed.
2002002 . Line 2: The return value of the ` print ` command itself is ` null ` , but the ` print ` command
201- forces its argument (` $p ` , which is 5 ) to be _ displayed_ . As with Line 1, the ` null ` return value
201+ forces its argument (` $p ` , which is 7 ) to be _ displayed_ . As with Line 1, the ` null ` return value
202202 is discarded since this isn't the last value in the expression.
2032033 . Line 3: Evaluates to the integer value 42. As the last value in the expression, this is the return
204204 result, and is also displayed (rendered).
You can’t perform that action at this time.
0 commit comments