```javascript class Person { property name property age greet { print("hello {name} you're {age} years old!") } static clone(other) { Person(other.name, other.age) } } ```