We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Flags] enum Flags { None = 0, UnionJack = 1, USA = 2, Communist = 4, SouthKorea = 8, } // ... var file = new DataFile("example"); var communistBritain = Flags.UnionJack | Flags.Communist; file.Set("flags", communistBritain);
example.succ will contain the following:
example.succ
flags: 5
It would be nicer if it contained something like this:
flags: UnionJack | Communist
or perhaps
flags: UnionJack, Communist
or maybe even
flags: UnionJack and Communist
Or maybe SUCC should support all three syntaxes, and the one that's used is a FileStyle setting.
FileStyle
The text was updated successfully, but these errors were encountered:
No branches or pull requests
example.succ
will contain the following:It would be nicer if it contained something like this:
or perhaps
or maybe even
Or maybe SUCC should support all three syntaxes, and the one that's used is a
FileStyle
setting.The text was updated successfully, but these errors were encountered: