Objects are sets of properties and methods that use the common templates called classes. They will be describe more in object oriented section
Objects are represent of object oriented programming.
Initialize
$object : (@new $Class_name)
Access object peroperties or method:
use operator . (single dot)
$object . (@changeName John)
$object . $name
> John