Content deleted Content added
m added pico |
No edit summary |
||
Line 7:
== Statements and blocks ==
The '''curly brace family''' of [[programming language]]s includes [[C programming language|C]], [[C Plus Plus|C++]], [[D programming language|D]], [[Java programming language|Java]], [[JavaScript]], [[AWK]], [[Perl]], [[PHP]], [[C Sharp programming language|C#]], [[Pico programming language]] and others. The name derives from the common [[syntax]] of the languages, where blocks of statements are enclosed in [[bracket#Brackets in computing|curly braces]]. For example (using [[Berkeley Software Distribution|BSD]]/[[Eric Allman|Allman]] [[indent style]], one of many stylistic ways to format a program):
for (int i = 0; i < 10; i++)
Line 84:
[[C programming language|C]] has nothing like this, though some compilers vendors added the keywords <tt>__try</tt> and <tt>__finally</tt> to their implementation.
[[Category:Curly bracket programming languages|*]]
|