aboutsummaryrefslogtreecommitdiffhomepage
path: root/content/en/functions/math/Add.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/en/functions/math/Add.md')
-rw-r--r--content/en/functions/math/Add.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/content/en/functions/math/Add.md b/content/en/functions/math/Add.md
index afa8d48aa..a438a3d53 100644
--- a/content/en/functions/math/Add.md
+++ b/content/en/functions/math/Add.md
@@ -22,3 +22,9 @@ If one of the numbers is a [`float`], the result is a `float`.
```
[`float`]: /getting-started/glossary/#float
+
+You can also use the `add` function to concatenate strings.
+
+```go-html-template
+{{ add "hu" "go" }} → hugo
+```