big: Fast square method.

This commit is contained in:
Jeroen van Rijn
2021-08-11 20:59:51 +02:00
parent b4a29844e9
commit c3a4d7dda2
3 changed files with 92 additions and 19 deletions
+1 -2
View File
@@ -64,9 +64,8 @@ demo :: proc() {
print("b", b, 10);
fmt.println("--- mul ---");
mul(c, a, b);
mul(c, a, a);
print("c", c, 10);
}
main :: proc() {