define.lua 157 B

1234567891011
  1. local Rectangle = {area = 0, length = 0, breadth = 0}
  2. function Rectangle:new (o,length,breadth)
  3. end
  4. function Rectangle:printArea ()
  5. end
  6. return Rectangle