aboutsummaryrefslogtreecommitdiff
path: root/libs/lua/test/README
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-05-16 10:58:21 (GMT)
committerPavel Labath <pavelo@centrum.sk>2013-02-16 23:10:16 (GMT)
commit1061e5282d7deeb3e15a5d1c9bc03e0759b1f2cd (patch)
tree82c384e4afb8e8eefec15e7481c9f5648071ee33 /libs/lua/test/README
parentfe2d9476d5025048f45ea7535a8c7412daa50438 (diff)
downloadfluxbox_pavel-1061e5282d7deeb3e15a5d1c9bc03e0759b1f2cd.zip
fluxbox_pavel-1061e5282d7deeb3e15a5d1c9bc03e0759b1f2cd.tar.bz2
Add lua as an internal library in libs/lua
Diffstat (limited to 'libs/lua/test/README')
-rw-r--r--libs/lua/test/README26
1 files changed, 26 insertions, 0 deletions
diff --git a/libs/lua/test/README b/libs/lua/test/README
new file mode 100644
index 0000000..0c7f38b
--- /dev/null
+++ b/libs/lua/test/README
@@ -0,0 +1,26 @@
1These are simple tests for Lua. Some of them contain useful code.
2They are meant to be run to make sure Lua is built correctly and also
3to be read, to see how Lua programs look.
4
5Here is a one-line summary of each program:
6
7 bisect.lua bisection method for solving non-linear equations
8 cf.lua temperature conversion table (celsius to farenheit)
9 echo.lua echo command line arguments
10 env.lua environment variables as automatic global variables
11 factorial.lua factorial without recursion
12 fib.lua fibonacci function with cache
13 fibfor.lua fibonacci numbers with coroutines and generators
14 globals.lua report global variable usage
15 hello.lua the first program in every language
16 life.lua Conway's Game of Life
17 luac.lua bare-bones luac
18 printf.lua an implementation of printf
19 readonly.lua make global variables readonly
20 sieve.lua the sieve of of Eratosthenes programmed with coroutines
21 sort.lua two implementations of a sort function
22 table.lua make table, grouping all data for the same item
23 trace-calls.lua trace calls
24 trace-globals.lua trace assigments to global variables
25 xd.lua hex dump
26