Docs Menu

Welcome

Private Members

Use the pv keyword to mark classes, fields, or methods as private. This restricts their access from outside the module.

drylang
pv cl Internal {
    fn secret() {
        rev "hidden"
    }
}