1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-11 11:47:03 +03:00

procedure -> procedures

This commit is contained in:
Roman Frołow 2021-11-18 02:14:08 +00:00 committed by GitHub
parent 5af04644cf
commit 2333807af5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ objects as a primary structuring block.
Nickel (and other languages of the list, for that matter) uses *functions* as a
basic computational block. Functions are simple and well understood (some inputs
give an output), pervasive (as macros, procedure, methods, etc.), and
give an output), pervasive (as macros, procedures, methods, etc.), and
composable. Nickel is *functional*, in the sense that functions are moreover
first-class: they can be created everywhere, passed around as any other value,
and called at will.