MParser/Parser/MFunctions/MHelpers.cs
2020-07-18 14:01:43 +02:00

17 lines
284 B
C#

using Parser.Objects;
using System;
namespace Parser.MFunctions
{
public static class MHelpers
{
public static void Disp(MObject? obj)
{
if (obj is not null)
{
Console.WriteLine(obj);
}
}
}
}