删除的内容 添加的内容
第24行:
 
==概述==
Richards試著移除了CPL中最複雜的組成,第一支BCPL compiler在[[IBM 7090|IBM 7094]]電腦中完成。身為早期程式語言的BCPL,如今已不再廣泛使用,但它的影響卻是深遠的,今日流行的[[C語言]]即是參考BCPL所設計<ref name="C_Prog_Lang_KR">{{cite book |url=https://archive.org/details/cprogramminglang00bria |title=The C Programming Language |date=1978 |publisher=Bell Telephone Laboratories |isbn=0-13-110163-3 |pages=2 |authors=Kernighan, Brian W. and Dennis M. Ritchie}}</ref>。BCPL是第一支{{en-link|括弧編程語言|Brace programming language}}<ref>https://www.cl.cam.ac.uk/~mr10/bcplman.pdf The BCPL Cintsys and Cintpos User Guide, 2.1.4 Section brackets</ref>,[[括弧]]特徵在C語言中隨處可見,例如:
LET FUNC foo(a) = VALOF
{ b := a + 1
RESULTIS b }
 
== 範例 ==