Initial commit

This commit is contained in:
github-classroom[bot] 2025-06-03 15:18:01 +00:00 committed by GitHub
commit 4b1294b32d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 5134 additions and 0 deletions

View file

@ -0,0 +1,12 @@
namespace MathInterpreter.Core;
/// <summary>
/// Possible operators in an expression
/// </summary>
public enum Operator
{
Plus,
Minus,
Multiply,
Divide
}