Difference between revisions of "Syntax error"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (First) |
Karl Jones (Talk | contribs) (→External links) |
||
(One intermediate revision by one other user not shown) | |||
Line 13: | Line 13: | ||
* [[Computer program]] | * [[Computer program]] | ||
* [[Computer science]] | * [[Computer science]] | ||
− | * [[Syntax ( | + | * [[Syntax (programming languages)]] |
== External links == | == External links == | ||
* [https://en.wikipedia.org/wiki/Syntax_error Syntax error] @ Wikipedia | * [https://en.wikipedia.org/wiki/Syntax_error Syntax error] @ Wikipedia | ||
+ | |||
+ | [[Category:Computer programming]] | ||
+ | [[Category:Computer science]] | ||
+ | [[Category:Language]] |
Latest revision as of 04:27, 22 April 2016
In computer science, a syntax error is an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language.
Compiled languages
For compiled languages, syntax errors occur strictly at compile-time. A program will not compile until all syntax errors are corrected.
Interpreted languages
For interpreted languages,not all syntax errors can be reliably detected until run-time, and it is not necessarily simple to differentiate a syntax error from a semantic error; many don't try at all.
See also
External links
- Syntax error @ Wikipedia