We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b50594 commit 407bc54Copy full SHA for 407bc54
docs/New Features/Preprocessing.md
@@ -84,7 +84,7 @@ or write simple functions which will be fully inlined at the call site:
84
85
```pluto
86
$alias add(a, b) = a + b
87
-assert(add(1, 2) == 3)
+print(add(1, 2)) --> 3
88
```
89
90
If you want to write an alias over multiple lines, you can use a backslash to continue it:
@@ -95,5 +95,5 @@ $alias seq = "a" \
95
"b" \
96
.. \
97
"c"
98
-assert(seq == "abc")
+print(seq) --> abc
99
0 commit comments