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/lang/Nub.Lang/Backend/LabelFactory.cs
nub31 37e788cc3a ...
2025-05-04 16:03:17 +02:00

7 lines
135 B
C#

namespace Nub.Lang.Backend;
public class LabelFactory
{
private int _index;
public string Create() => $"label{++_index}";
}