We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872b0a5 commit eefd14cCopy full SHA for eefd14c
DIRECTORY.md
@@ -2,6 +2,7 @@
2
3
## Math
4
- [Abs](math/abs.jule)
5
+- [Cube Root](math/cube_root.jule)
6
- [Fact](math/fact.jule)
7
- [Fib](math/fib.jule)
8
- [Max](math/max.jule)
math/cube_root.jule
@@ -1,5 +1,5 @@
1
// Import the standard math library
-use std::math { pow }
+use std::math { pow, abs }
// Import the standard testing library
use std::testing { T }
0 commit comments