More actions
Updated via bot |
m Updated via bot |
||
| Line 1: | Line 1: | ||
<span id="programming_languageprogramming-language"></span> | <span id="programming_languageprogramming-language"></span> | ||
A special language that let us write instructions that a computer can | A special language that let us write instructions that a computer can execute. | ||
<span id="details"></span> | <span id="details"></span> | ||
== Details == | == Details == | ||
Each programming language has its own '''syntax''' — the set of rules that define how code must be written. Like grammar in human languages, syntax ensures that instructions are structured in a way the computer can understand. Unlike natural languages, [[Programming|programming]] syntax is very strict — even a small error can prevent a [[Computer_Program|program]] from running. | |||
----- | |||
Most code editors include '''syntax highlighting''', which visually distinguishes parts of the code using different colors and styles. This helps developers read, understand, and debug code more easily. | |||
----- | |||
The instructions written in a programming language are called '''source code'''. However, computers do not directly understand source code. It must first be translated, either by a [[Compiler|compiler]] or an [[Interpreter|interpreter]], into a form the computer can execute. | |||
<span id="related-concepts"></span> | <span id="related-concepts"></span> | ||
| Line 13: | Line 22: | ||
* ''Includes'': [[C_Sharp|C Sharp]] | * ''Includes'': [[C_Sharp|C Sharp]] | ||
* ''Used in'': [[Compiler|Compiler]] | |||
* ''Used in'': [[Interpreter|Interpreter]] | |||
* ''Used in'': [[Computer_Program|Computer Program]] | * ''Used in'': [[Computer_Program|Computer Program]] | ||
* ''Used in'': [[Programming|Programming]] | * ''Used in'': [[Programming|Programming]] | ||
Latest revision as of 17:30, 23 October 2025
A special language that let us write instructions that a computer can execute.
Details
Each programming language has its own syntax — the set of rules that define how code must be written. Like grammar in human languages, syntax ensures that instructions are structured in a way the computer can understand. Unlike natural languages, programming syntax is very strict — even a small error can prevent a program from running.
Most code editors include syntax highlighting, which visually distinguishes parts of the code using different colors and styles. This helps developers read, understand, and debug code more easily.
The instructions written in a programming language are called source code. However, computers do not directly understand source code. It must first be translated, either by a compiler or an interpreter, into a form the computer can execute.
Related Concepts
- Includes: C Sharp
- Used in: Compiler
- Used in: Interpreter
- Used in: Computer Program
- Used in: Programming
- Use: Comment