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
commit64d3e78262c35857ae9310c9b9da9ee91ea43dd2 (patch)
treeb130d479b882b903da691164f82557163c7dc048 /docs/math.md
parent595fd25a80c569d104bc53cbfb9e46654134b4e1 (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
+```