class Human {
    var age = 0
    func birthday() {
        age++;
        println('Happy Birthday!');
    }
}
