0 / 60 seg.

In the code below, what is width an example of?

class Square {
  var height: Int = 0
  var width: Int {
    return height
  }
}