Skip to content

Commit

Permalink
Merge commit 'ec1588ea669387fca179b99587b0ae61587f9863'
Browse files Browse the repository at this point in the history
  • Loading branch information
vedderb committed Jul 18, 2022
2 parents 763f759 + ec1588e commit d561a8b
Show file tree
Hide file tree
Showing 3 changed files with 485 additions and 436 deletions.
2 changes: 1 addition & 1 deletion lispBM/lispBM/doc/lbmref.md
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ The `setvar` form is used to change the value of some variable in an environment
You can use `setvar` to change the value of a global definition, a local definition
or a variable defintion (`#var`). An application of the `setvar` form looks like
`(setvar var-expr val-expr)` where `var-expr` should evaluate to a symbol. The `val-expr` is evaluated before
rebinding the variable.
rebinding the variable. `setvar` returns the value that `val-expr` evaluates to.

Examples:
```clj
Expand Down
5 changes: 5 additions & 0 deletions lispBM/lispBM/include/lbm_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@

/*! \page changelog Changelog
Jul 17 2022: Version 0.5.4
- Refactoring with readability in focus.
- Computing encodings of commonly used symbol constants (for eval_cps) at compile time
rather then repeatedly at runtime.
Jul 13 2022: Version 0.5.4
- Added function that lookups based on the second field in assoc structures.
Called it "cossa" as it is like assoc but backwards.
Expand Down
Loading

0 comments on commit d561a8b

Please sign in to comment.