Docs & comments cleanup

This commit is contained in:
Jared Ramirez 2020-10-28 11:13:26 -07:00
parent 242eb6f905
commit 3e0d4cd3c7
10 changed files with 50 additions and 648 deletions

View file

@ -1,7 +1,5 @@
const std = @import("std");
const math = std.math;
// const testing = std.testing;
export fn atan_(num: f64) f64 {
return math.atan(num);
@ -14,7 +12,3 @@ export fn is_finite_(num: f64) bool {
export fn pow_int_(base: i64, exp: i64) i64 {
return math.pow(i64, base, exp);
}
// test "basic add functionality" {
// testing.expect(add(3, 7) == 10);
// }