Send operations always require full brackets, not just in ifs. This is because they can take multiple params.
ie.
(send gEgo:
setSpeed(123)
setSomethingElse()
setThat(345)
)
so if you're sending just one param, it still works the same:
(aMan:
isStopped()
)
or
(aMan:isStopped())