Skip to content

Commit

Permalink
dox
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hansen committed Aug 26, 2018
1 parent 37d5821 commit 78058bd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ a single binder, and then use its `Clone` method for each thread that needs to
bind towards the same type, to significantly reduce resource usage during
compilation of your Lizzie code.

The `Binder` also functions as a stack. At the global level, everything you
declare becomes available for every function, and all of your Lizzie code.
However, everything you declare as symbols/variables inside a function, will only
exist for that function. This is similar to how JavaScript works. If you declare
a symbol/variable inside a stack, that already exists at the global level, this
variable will locally override the variable for the duration of your function.

## Pre-defined Lizzie functions

Lizzie contains many pre-defined functions for different use cases, which you
Expand Down

0 comments on commit 78058bd

Please sign in to comment.