Update README

This commit is contained in:
Jeff 2023-12-15 17:33:48 -05:00
parent fa7fb57600
commit 5beda4695d

View File

@ -225,12 +225,12 @@ Functions are first-class values in dust, so they are assigned to variables like
```dust
# This simple function has no arguments.
say_hi = fn || {
say_hi = (fn) {
(output "hi")
}
# This function has one argument and will return a value.
add_one <(int) -> int> = fn |number| {
add_one = (fn number <num>) <num> {
number + 1
}