https://issues.dlang.org/show_bug.cgi?id=13371

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from [email protected] ---
auto factorial(T)(in T n) {
    import std.mathspecial : gamma;
    return gamma(n+1);
}

--

Reply via email to