mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
8 lines
108 B
ChaiScript
8 lines
108 B
ChaiScript
|
|
|
|
var s = ""
|
|
|
|
s += to_string(fun[s](){ s += "3"; 3}() % fun[s](){ s += "2"; 2}());
|
|
|
|
assert_equal(s, "321");
|