Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 912 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 912 Bytes

cluautils

This is a package with useful functions to use in your lua programs. You can use it with lua version 5.1 and higher.

Currently available APIs:

Installation

Luarocks online installation isn't available yet, couse library is still in development. But you can do it locally:

git clone [email protected]:castlele/cluautils.git

cd cluautils

luarocks make

Modules

OOP

Goals of this module:

  • provide a basic functionality for inheritance
  • make it easier to compare different classes
  • encapsulate common functionality in a base class

How to use:

-- TODO: TBD