Content deleted Content added
→Languages: Added clarifying information to language list. |
Deleted most second and third instances of Wiki-links to terms: "C", "C++", "Java". |
||
Line 19:
but this is not recommended, as it becomes nearly impossible for a person to read after the program grows beyond a few statements.
There are many other ways to identify statement blocks, such as ending keywords that may match beginning keywords (
=== Loops ===
In
while (''Boolean expression'') {
''statement(s)''
Line 38:
=== Conditional statements ===
In
if (''Boolean expression'') {
''statement(s)''
Line 66:
=== Exception handling ===
In [[C Sharp programming language|C#]] and
try {
''statement(s)''
Line 77:
}
==Languages==
|