Initial commit

checkpoint only
This commit is contained in:
Jordan Wages 2025-06-12 02:18:27 -05:00
commit 5066257912
13 changed files with 1219 additions and 0 deletions

15
src/core/FunctionValue.cs Normal file
View file

@ -0,0 +1,15 @@
using csmic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace csmic
{
public class FunctionValue
{
public required csmic.ValueType Type { get; set; }
public object? Value { get; set; }
}
}