Counter Object
Define a public class named Counter
with a single public instance method named increment
.
increment
takes no parameters and returns an Int
.
The first time it is called it should return 0
, the next 1
, the next 2
, and so on.
Each instance of Counter
should maintain its own counter.