mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 06:13:55 -07:00
8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
|
|
// Even though this is local to the module, it's visible to other appendixes.
|
||
|
|
function appendToResult(fun, str)
|
||
|
|
{
|
||
|
|
return () => fun() + str;
|
||
|
|
}
|
||
|
|
|
||
|
|
fn = appendToResult(fn, "0");
|