This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/src/compiler/Nub.Lang/FuncParameter.cs
2025-05-05 19:26:23 +02:00

9 lines
223 B
C#

namespace Nub.Lang;
public class FuncParameter(string name, NubType type)
{
public string Name { get; } = name;
public NubType Type { get; } = type;
public override string ToString() => $"{Name}: {Type}";
}