• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

READMED11-Mar-20241.1 KiB2723

bisect.luaD11-Mar-2024645 2818

cf.luaD11-Mar-2024293 1713

echo.luaD11-Mar-202480 63

env.luaD11-Mar-2024181 83

factorial.luaD11-Mar-2024707 3322

fib.luaD11-Mar-2024605 4132

fibfor.luaD11-Mar-2024254 1410

globals.luaD11-Mar-2024418 149

hello.luaD11-Mar-202486 41

life.luaD11-Mar-20242.6 KiB11279

luac.luaD11-Mar-2024234 84

printf.luaD11-Mar-2024169 84

readonly.luaD11-Mar-2024260 138

sieve.luaD11-Mar-2024774 3022

sort.luaD11-Mar-20241.5 KiB6754

table.luaD11-Mar-2024283 139

trace-calls.luaD11-Mar-2024749 3326

trace-globals.luaD11-Mar-2024728 3930

xd.luaD11-Mar-2024364 1511

README

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
27