Skip to content

Commit

Permalink
3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLMcGuire committed Oct 2, 2023
1 parent b24fe04 commit 45b0963
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 22 deletions.
21 changes: 7 additions & 14 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,18 @@ static void Main(string[] args)
Console.WriteLine("Daniel McGuire Corporation Tools (R)");
Console.WriteLine("MathBot CLI Version 3.0.3");
Console.WriteLine();
Console.WriteLine(" MORE ARGUMENTS COMING SOON (use --later for more info).");
Console.WriteLine();
Console.WriteLine("Usage:");
Console.WriteLine(" --about, -info, -a: Show About info");
Console.WriteLine(" --credits, -c: Credits");
Console.WriteLine(" --help, -h: Show help");
Console.WriteLine(" --prime <number>: Check if a number is a prime number");
Console.WriteLine(" --addition, -add: Add Numbers Together");
Console.WriteLine(" --subtraction, -subtract: Subtract Numbers");
Console.WriteLine(" --multiplication -multiply: Multiply Numbers");
Console.WriteLine(" --division, -divide: Divide Numbers");
Console.WriteLine();
Console.WriteLine("Example ./MathBotCLI <Operation> <Number1> <Number2>")
break;
// Credits
case "--credits":
Expand All @@ -78,19 +83,6 @@ static void Main(string[] args)
Console.WriteLine("Special Thanks to Microsoft for Making .NET and Visual Studio and VS Code!");
Console.WriteLine("RIP Visual Studio for macOS (One of the program used for this project).");
break;
// Coming Soon:
case "--later":
Console.WriteLine("Upcoming Features (in The 'BIG' 3.1.0 Update)");
Console.WriteLine("MathBot CLI Version 3.0.3");
Console.WriteLine();
Console.WriteLine("Args:");
Console.WriteLine(" --addition, -add: Add Numbers Together");
Console.WriteLine(" --subtraction, -subtract: Subtract Numbers");
Console.WriteLine(" --multiplication -multiply: Multiply Numbers");
Console.WriteLine(" --division, -divide: Divide Numbers");
Console.WriteLine();
Console.WriteLine("AND SO MUCH MORE COMING SOON!");
break;
// Prime Number Checker
case "--prime":
if (args.Length > 1)
Expand Down Expand Up @@ -194,3 +186,4 @@ static void Main(string[] args)
}
}
}

22 changes: 14 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,23 @@ Currently Attempting to Adapt to Semantic Versioning.

(This Project is going to change a lot, I'm adding a lot of math functions to this)

Version 2 Has Been Skipped Due To Issues.

### Usage: (Updated as of V3.0.2)

--about --info -a: Show About info
### Usage: (Updated as of V3.1.0)
--about, -info, -a: Show About info
--credits, -c: Credits

--help, -h: Show help

--prime (number): Check if a number is a prime number

Example: ./MathBotCLI (Operation) (Number)
--prime <number>: Check if a number is a prime number

--addition, -add: Add Numbers Together

--subtraction, -subtract: Subtract Numbers

--multiplication -multiply: Multiply Numbers

--division, -divide: Divide Numbers

**Build From Source Instructions Will Be Here By 2024**

Expand Down

0 comments on commit 45b0963

Please sign in to comment.