10 lines
156 B
ChaiScript
10 lines
156 B
ChaiScript
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())
|
|
|