var aProperty: Int { return 2 + 5 }
위와 같은 property를 computed property라 하며, 이는 Output(return)값을 가진다. return 2 + 5를 'computation'이라 하며 이로인해 이 computed property의 ouput은 '7'이 된다.