Call Constructor
Statement
Lets a constructor call other constructors with the Var construct.
Syntax
Call Constructor argument_list
Parts
argument_list
- Mandatory one or more expressions, with a comma between each. You can put parentheses around the list, if you want.
Instructions
TODO
Examples
Class Example
Constructor Var
Var a As Int32
Var b As Real64
End Constructor
Constructor
Call Constructor 0, 0.0
End Constructor
End Class