Content deleted Content added
→Exception handling: clarify objective c support |
No edit summary |
||
Line 21:
=== Loops ===
In C,
while (''Boolean expression'') '''{'''
''statement(s)''
Line 35:
=== Conditional statements ===
In C, C++, C#, and Java:
if (''Boolean expression'')
'''{'''
Line 76:
=== Exception handling ===
In [[C++]], [[C Sharp programming language|C#]] and Java:
try
'''{'''
|