diff options
Diffstat (limited to 'src/content/chapter0_basics/lesson17_lists/en.html')
-rw-r--r-- | src/content/chapter0_basics/lesson17_lists/en.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/content/chapter0_basics/lesson17_lists/en.html b/src/content/chapter0_basics/lesson17_lists/en.html index c29758a..84f88f3 100644 --- a/src/content/chapter0_basics/lesson17_lists/en.html +++ b/src/content/chapter0_basics/lesson17_lists/en.html @@ -2,9 +2,11 @@ Lists are ordered collections of values. </p> <p> - <code>List</code> is a generic type, having a type parameter - for the type of values it contains. A list of ints has the type - <code>List(Int)</code>, and a list of strings has the type + <a href="https://hexdocs.pm/gleam_stdlib/gleam/list.html" target="_blank"> + <code>List</code> + </a> + is a generic type, having a type parameter for the type of values it contains. + A list of ints has the type <code>List(Int)</code>, and a list of strings has the type <code>List(String)</code>. </p> <p> |