mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
7 lines
119 B
ChaiScript
7 lines
119 B
ChaiScript
auto bob = fun(x) { x + 1 }
|
|
assert_equal(4, bob(3));
|
|
|
|
var y=3
|
|
auto bob2 = fun[y](x) { x + y }
|
|
assert_equal(7, bob2(4))
|