presentations/highlight-js/test/markup/cpp/function-title.txt

9 lines
150 B
Text

int main() {
A a = new A();
int b = b * sum(1, 2);
if (a->check1())
return 3;
else if (a->check2())
return 4;
return a->result();
}