mirror of
https://github.com/0xJ1M/MathsEngine.git
synced 2026-06-05 02:10:08 +00:00
Major refactor
This commit is contained in:
15
MathEngine/MathRunner/Program.cs
Normal file
15
MathEngine/MathRunner/Program.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using MathEngine.Expression;
|
||||
|
||||
namespace MathRunner
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Evaluting expression...");
|
||||
Expression exp = new("54+2+1");
|
||||
Console.WriteLine(exp.Evaluate());
|
||||
Console.WriteLine("Hello, World!");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user