add demo file for astyle code format options dialog

This commit is contained in:
royqh1979@gmail.com 2021-09-02 22:40:22 +08:00
parent eb38c97409
commit 2471259a41
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
namespace asylte_test{
class ClassA{
public:
void voo();
private:
void foo();
};
int main() {
int x;
if (x>10){
for (int i=0;i<10;i++)
x+=i*20;
}
return 0;
}
}