Beef
Beef copied to clipboard
[Feature request]: access modifier blocks
I've never been particularly fond of C++ but I think it does a couple of things right, such as public: and private:. It always bugged me that you have to sprinkle access modifiers on everything in C# and this has been inherited by Beef, so I propose access modifier blocks as a quality of life feature.
class MyClass
{
//possible syntax
private
{
}
//C++ style maybe? saves a level of indentation
public:
}