test131

Undocumented in source.
immutable
@TestInfo(null, [HostSymbol("log", cast(void*)&external_print_i64_func)])
auto test131 = q{--- test131 i64 fac(i64 x) { if (x < 2) { return 1; } else { return fac(x - 1) * x; } } @extern(module, "host") void log(i64); void run() { log(fac(5)); } };

Meta