Add variable and constant

This commit is contained in:
Angelos Chalaris
2018-08-17 11:10:56 +03:00
parent 2808af4e66
commit 01b87a68df
2 changed files with 8 additions and 0 deletions

4
glossary/Constant.md Normal file
View File

@ -0,0 +1,4 @@
### Constant
A constant is a value, associated with an identifier.
The value of a constant can be accessed using the identifier and cannot be altered during execution.

4
glossary/Variable.md Normal file
View File

@ -0,0 +1,4 @@
### Variable
A variable is a storage location, associated with an identifier and containing a value.
The value of a variable can be referred using the identifier and can be altered during execution.