Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
defmacro add100() (+ x 100)
|
||||
|
||||
var x 23
|
||||
var firstresult (add100)
|
||||
x = 1000
|
||||
print
|
||||
+ firstresult (add100)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
def add100() (+ .x 100)
|
||||
|
||||
(dict) # create an environment capable of holding dynamic bindings
|
||||
var .x 23 # create a binding in the dictionary
|
||||
var firstresult (add100)
|
||||
.x = 1000
|
||||
print
|
||||
+ firstresult (add100)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
(dict)
|
||||
var .x 23
|
||||
(dict)
|
||||
print .x # fails
|
||||
Loading…
Add table
Add a link
Reference in a new issue