diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-09 23:03:21 +0100 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-15 19:17:57 +0100 |
commit | d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2 (patch) | |
tree | 2d4f86ec87eb87a77f6663924aaaa9286756ce3e /doc_topics/01-introduction.md | |
parent | d4222ce6da2a2d7179fc79f9d0cc65fd6c09a686 (diff) | |
download | luasystem-d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2.tar.gz luasystem-d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2.tar.bz2 luasystem-d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2.zip |
feat(*): add environment variable and random functions
Diffstat (limited to '')
-rw-r--r-- | doc_topics/01-introduction.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc_topics/01-introduction.md b/doc_topics/01-introduction.md new file mode 100644 index 0000000..9cc2347 --- /dev/null +++ b/doc_topics/01-introduction.md | |||
@@ -0,0 +1,12 @@ | |||
1 | # 1. Introduction | ||
2 | |||
3 | luasystem is a platform independent system call library for Lua. | ||
4 | Supports Unix, Windows, MacOS, `Lua >= 5.1` and `luajit >= 2.0.0`. | ||
5 | |||
6 | Lua is typically platform independent, but it requires adhering to very old C | ||
7 | standards. This in turn means that many common features (according to todays standards) | ||
8 | are not available. This module attempts to overcome some of those hurdles by providing | ||
9 | functions that cover those common needs. | ||
10 | |||
11 | This is not a kitchen sink library, but a minimalistic one with a focus on platform | ||
12 | independence. | ||