From 01b87a68df16fe7d74b30b701a20246aec941109 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Fri, 17 Aug 2018 11:10:56 +0300 Subject: [PATCH] Add variable and constant --- glossary/Constant.md | 4 ++++ glossary/Variable.md | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 glossary/Constant.md create mode 100644 glossary/Variable.md 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.