mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Docs & comments cleanup
This commit is contained in:
parent
242eb6f905
commit
3e0d4cd3c7
10 changed files with 50 additions and 648 deletions
|
@ -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);
|
||||
// }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue