Update shit

This commit is contained in:
Miloslav Ciz 2022-05-07 16:56:28 +02:00
parent 5db91153c8
commit cb4c18f285
14 changed files with 52 additions and 17 deletions

View file

@ -1,6 +1,6 @@
# Comment
Comment is part of program's [source code](source_code.md) that doesn't affect the program's behavior in any way (it's invisible to the [compiler](compiler.md)) and mostly serves only to hold information for human programmers (even though it can sometimes contain additional information such as metadata and autodocumentation information).
Comment is part of computer code that doesn't affect how the code is interpreted by the computer and is intended to hold information for humans (even though comments can sometimes contain additional information for computers such as metadata and autodocumentation information). There are comments in basically all [programming languages](programming_language.md), they usually start with `//`, `#`, `/*` and similar symbols.
**You should comment you source code.** General tips on commenting: