diff options
| author | s-ol <s+removethis@s-ol.nu> | 2025-09-14 10:12:13 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2025-09-14 15:36:21 +0000 |
| commit | 06c239e4f44849a3e4c8317194caacbcc47fc2d4 (patch) | |
| tree | 491c8c5f9e3ad4351aa55951a0d7c70cd8686087 /docs/reference/03-6_modules-and-loading.md | |
| parent | expose Tag to Ops (diff) | |
| download | alive-06c239e4f44849a3e4c8317194caacbcc47fc2d4.tar.gz alive-06c239e4f44849a3e4c8317194caacbcc47fc2d4.zip | |
de/fn, loop parameter lists use square brackets
Diffstat (limited to 'docs/reference/03-6_modules-and-loading.md')
| -rw-r--r-- | docs/reference/03-6_modules-and-loading.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/03-6_modules-and-loading.md b/docs/reference/03-6_modules-and-loading.md index cb53cc1..0f28e7e 100644 --- a/docs/reference/03-6_modules-and-loading.md +++ b/docs/reference/03-6_modules-and-loading.md @@ -57,7 +57,7 @@ rather the newly created scope. It can therefore be combined with [def][], (export (def a-value 7) - (defn print-doubled (x) (print (str x " doubled is " (* x 2))))) + (defn print-doubled [x] (print (str x " doubled is " (* x 2))))) `main.alv` |
