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

@ -5,8 +5,8 @@ namespace CSMic.StandardLibrary.Functions
{
public class Sign : FunctionBase, ICodedFunction
{
public const decimal POSITIVE = 1;
public const decimal NEGATIVE = -1;
private const decimal POSITIVE = 1;
private const decimal NEGATIVE = -1;
public string Name
{