We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CondorLang uses the LazyParsing (JIT) method. A body scope "{}" won't be compiled and analyzed until it is used.
object Fruit{ private string name; static string NAME = "Fruit"; func Fruit(string name){ this.name = name; } func getName(){ return this.name; } }
Extending an object is quite simple, prepend a $ to the object name.
$
object $Fruit{ string property; }