scummvm/common/lua
Thunderforge fd129ebc0c JANITORIAL: "Mac OS X" and "OS X" to "macOS" in comments
Apple's desktop operating system was formerly called "Mac OS X" and "OS X", but since 2016 it has been called "macOS" (starting with version 10.12).

Changing across all comments and documentation to use this current terminology, except in cases where the historical versions are explicitly referenced. No code changes are made; we should consider changing those in future PRs.
2022-01-29 14:15:05 +01:00
..
COPYRIGHT
double_serialization.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
double_serialization.h ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
HISTORY
lapi.cpp
lapi.h
lauxlib.cpp
lauxlib.h COMMON: LUA: Fix warnings for header search failure. 2021-06-26 08:41:47 +03:00
lbaselib.cpp
lcode.cpp
lcode.h
ldblib.cpp
ldebug.cpp
ldebug.h
ldo.cpp
ldo.h
lfunc.cpp
lfunc.h
lgc.cpp
lgc.h
linit.cpp
liolib.cpp
llex.cpp
llex.h
llimits.h
lmathlib.cpp
lmem.cpp
lmem.h
loadlib.cpp JANITORIAL: "Mac OS X" and "OS X" to "macOS" in comments 2022-01-29 14:15:05 +01:00
lobject.cpp
lobject.h
lopcodes.cpp
lopcodes.h
loslib.cpp ALL: Remove PS2 port 2020-08-01 15:15:49 +02:00
lparser.cpp
lparser.h
lstate.cpp
lstate.h
lstring.cpp
lstring.h
lstrlib.cpp
ltable.cpp
ltable.h
ltablib.cpp
ltm.cpp
ltm.h
lua_persist.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_persistence_util.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_persistence_util.h ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_persistence.h ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_unpersist.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua.h COMMON: LUA: Fix warnings for header search failure. 2021-06-26 08:41:47 +03:00
luaconf.h JANITORIAL: "Mac OS X" and "OS X" to "macOS" in comments 2022-01-29 14:15:05 +01:00
lualib.h COMMON: LUA: Fix warnings for header search failure. 2021-06-26 08:41:47 +03:00
lvm.cpp
lvm.h
lzio.cpp
lzio.h
README
scummvm_file.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
scummvm_file.h ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00

README for Lua 5.1

See INSTALL for installation instructions.
See HISTORY for a summary of changes since the last released version.

* What is Lua?
  ------------
  Lua is a powerful, light-weight programming language designed for extending
  applications. Lua is also frequently used as a general-purpose, stand-alone
  language. Lua is free software.

  For complete information, visit Lua's web site at http://www.lua.org/ .
  For an executive summary, see http://www.lua.org/about.html .

  Lua has been used in many different projects around the world.
  For a short list, see http://www.lua.org/uses.html .

* Availability
  ------------
  Lua is freely available for both academic and commercial purposes.
  See COPYRIGHT and http://www.lua.org/license.html for details.
  Lua can be downloaded at http://www.lua.org/download.html .

* Installation
  ------------
  Lua is implemented in pure ANSI C, and compiles unmodified in all known
  platforms that have an ANSI C compiler. In most Unix-like platforms, simply
  do "make" with a suitable target. See INSTALL for detailed instructions.

* Origin
  ------
  Lua is developed at Lua.org, a laboratory of the Department of Computer
  Science of PUC-Rio (the Pontifical Catholic University of Rio de Janeiro
  in Brazil).
  For more information about the authors, see http://www.lua.org/authors.html .

(end of README)