//Date created:  9/7/2021
//Author: Kong Xiong
//File name: BasicMathSymbol.txt
//Please do not modify this file; otherwise, the software might not work properly.
//The software uses to create pressed buttons.
//Any line starts with forward slashes (//) or blank will be ignored when parsing.
//Words after forward slashes (//) are dropped out, use as comment.

//https://www.how-to-study.com/study-skills-articles/basic-math-symbols.asp
//Symbol, Symbol Name, Meaning / definition
	
//Example
=: equals sign,	equality, 5 = 2+3
≠: not equal sign, inequality, 5 ≠ 4
>: strict inequality, greater than, 5 > 4
<: strict inequality, less than, 4 < 5
≥: inequality, greater than or equal to, 5 ≥ 4
≤: inequality, less than or equal to, 4 ≤ 5
(): parentheses, calculate expression inside first, 2 × (3+5) = 16
[]: brackets, calculate expression inside first, [(1+2)*(1+5)] = 18
+: plus sign, addition, 1 + 1 = 2
−: minus sign, subtraction, 2 − 1 = 1
±: plus - minus, both plus and minus operations, 3 ± 5 = 8 and -2
∓: minus - plus, both minus and plus operations, 3 ∓ 5 = -2 and 8
*: asterisk, multiplication, 2 * 3 = 6
×: times sign, multiplication, 2 × 3 = 6
∙: multiplication dot, 	multiplication,	2 ∙ 3 = 6
÷: division sign / obelus, division, 6 ÷ 2 = 3
/: division slash, division, 6 / 2 = 3
