diff --git a/Program.cs b/Program.cs index c65cdb4..ae823de 100644 --- a/Program.cs +++ b/Program.cs @@ -111,6 +111,14 @@ class Program List res = new List(); List files = GetAllFiles(directory); + void Usage() + { + /* + * This function will be called when argument errors happen. This will + * also be called if the user triggers the help flag currently this + * function throws a not implemented exception since it I cannot write + * the usage until I have other functionality + */ throw new NotImplementedException(); } static Tuple?> CheckDeps(List? dependencies)