mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
20 lines
294 B
C#
20 lines
294 B
C#
/*
|
|
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(); |