restructure fs
This commit is contained in:
9
lang/Nub.Lang/FuncParameter.cs
Normal file
9
lang/Nub.Lang/FuncParameter.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Nub.Lang;
|
||||
|
||||
public class FuncParameter(string name, Type type)
|
||||
{
|
||||
public string Name { get; } = name;
|
||||
public Type Type { get; } = type;
|
||||
|
||||
public override string ToString() => $"{Name}: {Type}";
|
||||
}
|
||||
Reference in New Issue
Block a user