Should this be allowed? ```python class Foo: @public def bar(self) -> None: printf("Hi\n") ``` Now other files can call the `bar()` method, but only if they get an instance of `Foo` from somewhere first because `Foo` is private.
Should this be allowed?
Now other files can call the
bar()method, but only if they get an instance ofFoofrom somewhere first becauseFoois private.