diff options
author | Dimitrii Dulgher <d1alogw0w@gmail.com> | 2024-04-13 00:04:06 +0300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-04-15 13:08:02 +0100 |
commit | a1c22e954299de5c823ec47cd2f633355764e3b2 (patch) | |
tree | 6db2d8e2d349d3078bb30190fae2271797cbc18a /src/content/chapter0_basics/lesson16_blocks/en.html | |
parent | 421cbe75fa1bfbd4bc271bf233ede15836de760d (diff) | |
download | tour-a1c22e954299de5c823ec47cd2f633355764e3b2.tar.gz tour-a1c22e954299de5c823ec47cd2f633355764e3b2.zip |
Add hrefs to code keywords
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 |