sergiotaborda / lense-lang

The Lense Language Compiler
1 stars 0 forks source link

Remove {get;} / {set;} with imutable convention #85

Open sergiotaborda opened 3 years ago

sergiotaborda commented 3 years ago

public attributes are automaticly immutable properties, private attributes are automaticly immutable fields.

to allow mutability use muttalbe

public mutable name : String?

private mutable name : String?

no need to use {get;} / {set;}