15 lines
286 B
C#
15 lines
286 B
C#
namespace PoyoLang.Translator.SourceGenerator;
|
|
|
|
public class Node
|
|
{
|
|
public char Letter { get; }
|
|
public string Target { get; }
|
|
|
|
public List<Node> Nodes { get; } = [];
|
|
|
|
public Node(char letter, string target)
|
|
{
|
|
Letter = letter;
|
|
Target = target;
|
|
}
|
|
} |