mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
12 lines
203 B
ChaiScript
12 lines
203 B
ChaiScript
var newfun = use("use.inc");
|
|
|
|
|
|
assert_equal("hello", greet())
|
|
|
|
// Include it a second time and see if there are any errors
|
|
use("use.inc")
|
|
|
|
assert_equal("hello", greet())
|
|
|
|
assert_equal("world", newfun())
|