Fix math.factorial()

This commit is contained in:
Oskar Nordquist
2020-12-13 02:36:29 +01:00
parent f64584b92a
commit 60b9ef1f5d

View File

@@ -508,7 +508,7 @@ factorial :: proc(n: int) -> int {
assert(n >= 0, "parameter must not be negative");
assert(n < len(table), "parameter is too large to lookup in the table");
return 0;
return table[n];
}
classify_f32 :: proc(x: f32) -> Float_Class {