-------------------------------------------------------------------------------- -- Title: TestWebHandler.lua -- Description: Like a square peg in a round hole -- Author: Raphaël Szwarc http://alt.textdrive.com/lua/ -- Creation Date: February 1, 2005 -- Legal: Copyright (C) 2005 Raphaël Szwarc -------------------------------------------------------------------------------- -- import dependencies local LUObject = require( "LUObject" ) -- define the class local super = LUObject local self = super() function self:get( aName ) print( "Hello!", aName ) end return self