aboutsummaryrefslogtreecommitdiff
path: root/docs/math.md
diff options
context:
space:
mode:
authorame <[email protected]>2023-12-19 11:38:17 -0600
committerame <[email protected]>2023-12-19 11:38:17 -0600
commit0112e2609f8aceb791656d19db568d04c586d7be (patch)
treeb130d479b882b903da691164f82557163c7dc048 /docs/math.md
parent9a4d5574a89c4a7842211238d8b9b30b905cc056 (diff)
some docs:3
Diffstat (limited to 'docs/math.md')
-rw-r--r--docs/math.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/math.md b/docs/math.md
new file mode 100644
index 0000000..0a84a8a
--- /dev/null
+++ b/docs/math.md
@@ -0,0 +1,13 @@
+# math
+
+## common
+
+### lcm
+
+'accepts table of numbers
+
+returns lcm of given array
+
+```lua
+llib.math.lcm({5, 4, 3}) -- 60
+```