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/CLI/Options.cs
nub31 edbab69c00 ...
2025-06-29 17:40:17 +02:00

9 lines
219 B
C#

namespace CLI;
public class Options
{
public string? CustomRuntime { get; set; }
public string? OutputPath { get; set; }
public bool Link { get; set; } = true;
public List<string> Files { get; } = [];
}