harn-hostlib 0.8.21

Opt-in code-intelligence and deterministic-tool host builtins for the Harn VM
Documentation
namespace Fixture
{
    public class Greeter
    {
        public string Name { get; set; }

        public string Greet()
        {
            return "hello " + Name;
        }
    }

    public interface ISpeaker
    {
        string Speak();
    }

    public enum Color
    {
        Red,
        Green,
        Blue
    }
}