Jump to content

Line-oriented programming language

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Markhobley (talk | contribs) at 07:54, 14 March 2011 (Imported from markhobley.yi.org). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

== _Line Oriented Programming Languages_

A *line oriented programming language* interprets the end of line is considered to be the end of an instruction or statement.

=== _Some line oriented languages may support the use of a line continuation character_

Some line oriented languages may support the use of a line continuation character, such as a [backslash] or [tilde] symbol.

=== _Examples of line oriented languages_

The following languages are line oriented:

  • [awk]
  • [basic]
  • [rexx]

=== _Non line oriented languages_

Non line oriented programming languages utilize a [logical] statement end, or an end of statement marker, such as a [semicolon] or [dot] symbol to mark the line end.

==== _Examples of non line oriented languages_

The following languages are non line oriented:

  • [C]
  • [C++]
  • [perl]