summaryrefslogtreecommitdiff
path: root/src/lib/README
diff options
context:
space:
mode:
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.