cs11dotnet7/vscode/Chapter04/WritingFunctions/Program.cs

20 lines
294 B
C#
Raw Normal View History

2022-02-19 20:56:52 +01:00
/*
TimesTable(7);
TimesTable(7, 20);
TimesTable(number: 7, size: 10);
*/
/*
decimal taxToPay = CalculateTax(amount: 149, twoLetterRegionCode: "FR");
WriteLine($"You must pay {taxToPay} in tax.");
*/
2022-09-18 12:16:18 +02:00
//RunCardinalToOrdinal();
2022-02-19 20:56:52 +01:00
2022-09-18 12:16:18 +02:00
RunFactorial();
2022-02-19 20:56:52 +01:00
//RunFibImperative();
2022-03-22 19:44:45 +01:00
//RunFibFunctional();