aboutsummaryrefslogtreecommitdiff
path: root/doc_topics/01-introduction.md
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2023-11-15 19:28:06 +0100
committerGitHub <noreply@github.com>2023-11-15 19:28:06 +0100
commit90997893cc568c86805afa95db28439c28e32980 (patch)
tree4a692fcc91a811e18023ba1896aeee23fe2ee2c5 /doc_topics/01-introduction.md
parentf868c16514be69b20a4e771cc347a80c9c439db6 (diff)
parent048f3cec7a18e7a28146f03c3c9e5d89d9613028 (diff)
downloadluasystem-90997893cc568c86805afa95db28439c28e32980.tar.gz
luasystem-90997893cc568c86805afa95db28439c28e32980.tar.bz2
luasystem-90997893cc568c86805afa95db28439c28e32980.zip
Merge pull request #6 from lunarmodules/time
Diffstat (limited to '')
-rw-r--r--doc_topics/01-introduction.md12
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
3luasystem is a platform independent system call library for Lua.
4Supports Unix, Windows, MacOS, `Lua >= 5.1` and `luajit >= 2.0.0`.
5
6Lua is typically platform independent, but it requires adhering to very old C
7standards. This in turn means that many common features (according to todays standards)
8are not available. This module attempts to overcome some of those hurdles by providing
9functions that cover those common needs.
10
11This is not a kitchen sink library, but a minimalistic one with a focus on platform
12independence.