Just wondering. When/why are square brackets, vs curly brackets, vs as double quote used for text inside shape?
It seems that all of this is valid
rectangle firstObject [ text -- more text ]
rectangle "My Second Object" as o2
rectangle second as " test "
And this is valid
object firstObject {
text
--
more text
}
But this is not valid
rectangle firstObject {
text
}
And this is not valid
object firstObject [
text
--
more text
]
Thanks!