RedPanda-CPP/RedPandaIDE/resources/formatdemo.cpp

19 lines
238 B
C++
Raw Permalink Normal View History

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;
}
}