Function object()

← Back to Module core



Module core → object()

Description

Create an empty object

object(name = "")


Parameters


Return Value


Usage Example

a = object("myobj")
 
' a is:
' myobj(
' )
 
b = object()
 
' b is:
' object(
' )