From 74ce9ee245129344295ffe1c705af1ee0376fc24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Thu, 29 Aug 2024 12:10:50 +1200 Subject: [PATCH] Switch to Elm syntax highlighting (#49) --- exercises/practice/list-ops/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/list-ops/.docs/instructions.append.md b/exercises/practice/list-ops/.docs/instructions.append.md index 116b771..10d67b3 100644 --- a/exercises/practice/list-ops/.docs/instructions.append.md +++ b/exercises/practice/list-ops/.docs/instructions.append.md @@ -1,7 +1,7 @@ # Wait, It's Impossible! Implementing these list operations without using *any* built-in function is virtually impossible in Roc, because you need a way to append or prepend -elements to a list. In other languages you might use operators such as `::` +elements to a list. In other languages you might use operators such as `:` in Haskell or `+=` in Python, but in Roc you have to use the [`List` functions](https://www.roc-lang.org/builtins/List).