charly-vm
charly-vm copied to clipboard
Allow omitting func keyword in class function declarations
class Person {
property name
property age
greet {
print("hello {name} you're {age} years old!")
}
static clone(other) {
Person(other.name, other.age)
}
}