#REDIRECT [[Comparison of programming languages (syntax)#Statements]]
<!-- Please do not remove or change this AfD message until the discussion has been closed. -->
{{Article for deletion/dated|page=Linear syntax|timestamp=20180505063753|year=2018|month=May|day=5|substed=yes|help=off}}
<!-- Once discussion is closed, please place on talk page: {{Old AfD multi|page=Linear syntax|date=5 May 2018|result='''keep'''}} -->
<!-- End of AfD message, feel free to edit beyond this point -->
{{unreferenced|date=December 2008}}
{{Rcat shell|
'''Linear syntax''' is a [[computer programming|computer-programming]] term for an [[Expression (programming)|expression]] that can be parsed from left to right. Linear syntax implies the ability to write code without the use of [[line feed|line-feed]] or [[carriage return|carriage-return]] characters. Although the use of such characters is recommended for code readability, they are optional, as [[compiler]]s do not rely on them to parse and compile the code. [[HTML]], [[C (programming language)|C]], and [[SQL]] code are examples of languages that employ linear syntax; they all rely on commas, semicolons, and parentheses to separate code blocks.