Content deleted Content added
→Languages: Alphabetized list. |
Removed some POV stuff |
||
Line 2:
== History ==
Curly-bracket style goes way back before C. [[BCPL]] was the first language to use a curly bracket style, for outlining multi-statement function bodies. [[Ken Thompson]] gave the feature more glory in [[B programming language|B]]. Because [[C programming language|C]] was initially designed after B, C has retained the bracket style of B
Along with curly bracket style is the popular style of terminating a statement with a semicolon (;), which allows for languages that ignore whitespace. BCPL and Pico
LET FUNC foo(a) = VALOF
|