summaryrefslogtreecommitdiff
path: root/library/src/math/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-03-27 20:23:37 +0200
committerLaurenz <laurmaedje@gmail.com>2023-03-27 20:23:37 +0200
commit66de90437f64e532a51297dc233c57c2cda9a124 (patch)
tree0a51c661b3c2a57182de34f881e848c7572c3ff5 /library/src/math/mod.rs
parentf33103cf58f920f8e05ee7fadba9c377095edef8 (diff)
Update fibonacci example and add `round` function
Diffstat (limited to 'library/src/math/mod.rs')
-rw-r--r--library/src/math/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/src/math/mod.rs b/library/src/math/mod.rs
index 4e91dd51..b4a5b156 100644
--- a/library/src/math/mod.rs
+++ b/library/src/math/mod.rs
@@ -57,6 +57,7 @@ pub fn module() -> Module {
math.define("norm", norm);
math.define("floor", floor);
math.define("ceil", ceil);
+ math.define("round", round);
// Attachments and accents.
math.define("attach", AttachElem::func());