mirror of
https://github.com/0xJ1M/MathsEngine.git
synced 2026-06-04 23:50:08 +00:00
16 lines
354 B
C#
16 lines
354 B
C#
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!");
|
|
}
|
|
}
|
|
}
|