diff options
Diffstat (limited to 'src/content/chapter0_basics/lesson16_blocks/en.html')
-rw-r--r-- | src/content/chapter0_basics/lesson16_blocks/en.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/content/chapter0_basics/lesson16_blocks/en.html b/src/content/chapter0_basics/lesson16_blocks/en.html index bc82e39..b19c586 100644 --- a/src/content/chapter0_basics/lesson16_blocks/en.html +++ b/src/content/chapter0_basics/lesson16_blocks/en.html @@ -7,8 +7,11 @@ Any variables assigned within the block can only be used within the block. </p> <p> - Try uncommenting <code>io.debug(degrees)</code> to see the compile error from - trying to use a variable that is not in scope. + Try uncommenting + <a href="https://hexdocs.pm/gleam_stdlib/gleam/io.html#debug" target="_blank"> + <code>io.debug(degrees)</code> + </a> + to see the compile error from trying to use a variable that is not in scope. </p> <p> Blocks can also be used to change the order of evaluation of binary operators |