Initial commit
This commit is contained in:
commit
4b1294b32d
23 changed files with 5134 additions and 0 deletions
12
MathInterpreter/Core/Operator.cs
Normal file
12
MathInterpreter/Core/Operator.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace MathInterpreter.Core;
|
||||
|
||||
/// <summary>
|
||||
/// Possible operators in an expression
|
||||
/// </summary>
|
||||
public enum Operator
|
||||
{
|
||||
Plus,
|
||||
Minus,
|
||||
Multiply,
|
||||
Divide
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue