Content deleted Content added
→Statements and blocks: Changed word "braces" to "brackets" to conform to Wiki-usage. |
Alphabetized language naming, standardized punctuation. |
||
Line 23:
=== Loops ===
In [[
while (''Boolean expression'') {
''statement(s)''
Line 38:
=== Conditional statements ===
In [[
if (''Boolean expression'') {
''statement(s)''
Line 59:
}
In [[Ruby programming language|Ruby]]
if ''expression'' then
''statement(s)''
Line 66:
=== Exception handling ===
In [[
try {
''statement(s)''
|