class Program
shared
def main
pass
could it be usefull in cobra for member visibility?
possible way to support that:
struct Credential
private
var _login as String
var _password as String
public
pro login from var
pro password from var
I like the c++ syntax when visibility grouping is usefull,
currently the compiler return with:
- Code: Select all
error: Got "private" when expecting def, enum, get, invariant, pro, set, shared, sig, test, or var.