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

10 lines
150 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
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();
}