summaryrefslogtreecommitdiff
path: root/src/lib/README
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2004-12-30 12:00:00 +0000
committerrepogen <>2004-12-30 12:00:00 +0000
commite2493a40ee611d5a718fd2a81fe67e24c04c91a0 (patch)
tree0dca96133b3cd52d262dfa2592ad076fc0ea7852 /src/lib/README
parent226f7859b5392b6680b7e703f9cc7f7f101fd365 (diff)
downloadlua-github-5.1-work4.tar.gz
Lua 5.1-work45.1-work4
Diffstat (limited to 'src/lib/README')
-rw-r--r--src/lib/README8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/README b/src/lib/README
deleted file mode 100644
index c5600b8e..00000000
--- a/src/lib/README
+++ /dev/null
@@ -1,8 +0,0 @@
-This is the standard Lua library.
-
-The code of the standard library can be read as an example of how to export
-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.