diff --git a/glossary/Constant.md b/glossary/Constant.md new file mode 100644 index 000000000..a12459edb --- /dev/null +++ b/glossary/Constant.md @@ -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. diff --git a/glossary/Variable.md b/glossary/Variable.md new file mode 100644 index 000000000..fb8d05c6c --- /dev/null +++ b/glossary/Variable.md @@ -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.