Adding functions to Standard Library

This commit is contained in:
Jordan Wages 2025-08-21 03:44:04 -05:00
commit 4a21ff3d46
39 changed files with 1465 additions and 51 deletions

View file

@ -17,6 +17,7 @@ namespace CSMic
public static readonly FunctionValue NONE = new FunctionValue(FunctionValueType.None, null);
public static readonly FunctionValue NUMBER = new FunctionValue(FunctionValueType.Numeric, 0m);
public static readonly FunctionValue STRING = new FunctionValue(FunctionValueType.String, string.Empty);
public static readonly FunctionValue ZERO = new FunctionValue(FunctionValueType.Numeric, 0m);
public FunctionValue()
{