summaryrefslogtreecommitdiff
path: root/src/lib/README
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2003-04-11 12:00:00 +0000
committerrepogen <>2003-04-11 12:00:00 +0000
commitf0e4e22f5c119865eb5a8d3844a40df2d5980b3b (patch)
treec4df063a747e9c99f8aba1678588a030993780a9 /src/lib/README
parent1981b7c90eb09e956e969cda5c473be4560af573 (diff)
downloadlua-github-5.0.tar.gz
Lua 5.05.0
Diffstat (limited to 'src/lib/README')
-rw-r--r--src/lib/README10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/README b/src/lib/README
index c04a12e2..c5600b8e 100644
--- a/src/lib/README
+++ b/src/lib/README
@@ -1,6 +1,8 @@
This is the standard Lua library.
-It is implemented entirely on top of the official Lua API as declared in lua.h,
-using lauxlib.c, which contains several useful functions for writing libraries.
-We encourage developers to use lauxlib.c in their own libraries.
+
The code of the standard library can be read as an example of how to export
-C functions to Lua.
+C functions to Lua. The easiest library to read is lmathlib.c.
+
+The library is implemented entirely on top of the official Lua API as declared
+in lua.h, using lauxlib.c, which contains several useful functions for writing
+libraries. We encourage developers to use lauxlib.c in their own libraries.