Initial commit

This commit is contained in:
Mark J Price 2022-02-19 19:56:52 +00:00
parent e523533d17
commit 10cceacca6
50 changed files with 1280 additions and 0 deletions

View file

@ -0,0 +1,20 @@
/*
TimesTable(7);
TimesTable(7, 20);
TimesTable(number: 7, size: 10);
*/
/*
decimal taxToPay = CalculateTax(amount: 149, twoLetterRegionCode: "FR");
WriteLine($"You must pay {taxToPay} in tax.");
*/
//RunCardinalToOrdinal();
//RunFactorial();
//RunFibImperative();
RunFibFunctional();