diff --git a/Samples/Beginners/HelloWorld.md b/Samples/Beginners/HelloWorld.md index 94f6674fb..b093d48e9 100644 --- a/Samples/Beginners/HelloWorld.md +++ b/Samples/Beginners/HelloWorld.md @@ -9,4 +9,4 @@ Console.WriteLine("Hello World!"); Congratulations! You've run your first C# program. It used the Console.WriteLine method to print `Hello World`. `Console` is a type that represents the console window. `WriteLine` is a method of the `Console` type that prints a line of text. -#### Next: [Strings & Variables »](./Strings.md) Previous: [Home «](../README.md) \ No newline at end of file +#### Next: [Strings & Variables »](./Strings.md) Previous: [Home «](../Readme.md) \ No newline at end of file diff --git a/Samples/Beginners/Methods.md b/Samples/Beginners/Methods.md index 7155abc83..ae48d3cc2 100644 --- a/Samples/Beginners/Methods.md +++ b/Samples/Beginners/Methods.md @@ -18,4 +18,4 @@ Replace the *name* variable with a *names* variable that has a list of names. Th Console.WriteLine($"Hello {name.ToUpper()}!"); } ``` -#### Previous - [Strings & Variables «](./Strings.md) Home - [Home](../README.md) \ No newline at end of file +#### Previous - [Strings & Variables «](./Strings.md) Home - [Home](../Readme.md) \ No newline at end of file diff --git a/Samples/Beginners/Strings.md b/Samples/Beginners/Strings.md index 155143d2e..6ae6b84ee 100644 --- a/Samples/Beginners/Strings.md +++ b/Samples/Beginners/Strings.md @@ -24,4 +24,4 @@ Start with including a `$` before the opening quotes of the string. Now, place a var name = "Rain"; Console.WriteLine($"Hello {name}!"); ``` -#### Next: [Methods »](./Methods.md) Previous: [Hello World «](./HelloWorld.md) Home - [Home](../README.md) +#### Next: [Methods »](./Methods.md) Previous: [Hello World «](./HelloWorld.md) Home - [Home](../Readme.md) diff --git a/Samples/Beginners/TeachTheComputer-formatting.md b/Samples/Beginners/TeachTheComputer-formatting.md index 4d2f6fc77..62418a39b 100644 --- a/Samples/Beginners/TeachTheComputer-formatting.md +++ b/Samples/Beginners/TeachTheComputer-formatting.md @@ -29,4 +29,4 @@ Then, replace all instances of `5` with `MaxRows`. Now, if you change `MaxRows`, You've finished this tutorial. You've taught the computer to do some of your math homework. -#### Previous: [Build the triangle «](./TeachTheComputer-repetition-2.md) Home: [Home](../README.md) +#### Previous: [Build the triangle «](./TeachTheComputer-repetition-2.md) Home: [Home](../Readme.md) diff --git a/Samples/Beginners/TeachTheComputer-repetition-2.md b/Samples/Beginners/TeachTheComputer-repetition-2.md index eaac06499..2eea29e02 100644 --- a/Samples/Beginners/TeachTheComputer-repetition-2.md +++ b/Samples/Beginners/TeachTheComputer-repetition-2.md @@ -38,4 +38,4 @@ for (int column = 1; column < rowIndex; column++) Try to modify the sample at the top of the page using these instructions. Then continue to see the answer and improve the formatting. -#### Next: [Improve formatting »](./TeachTheComputer-formatting.md) Previous: [Less repetition «](./TeachTheComputer-repetition.md) Home: [Home](../README.md) +#### Next: [Improve formatting »](./TeachTheComputer-formatting.md) Previous: [Less repetition «](./TeachTheComputer-repetition.md) Home: [Home](../Readme.md) diff --git a/Samples/Beginners/TeachTheComputer-repetition.md b/Samples/Beginners/TeachTheComputer-repetition.md index 47845926f..0ef53203e 100644 --- a/Samples/Beginners/TeachTheComputer-repetition.md +++ b/Samples/Beginners/TeachTheComputer-repetition.md @@ -26,4 +26,4 @@ foreach (int[] row in triangle) Try to modify the sample at the top of the page using these instructions. Run when you don't have red squiggles under your code. If the output window turns red, you may have the wrong indices in your array. Once you've got this working, continue for a bit more changes. -#### Next: [Build the triangle »](./TeachTheComputer-repetition-2.md) Previous: [Teach the computer «](./TeachTheComputer.md) Home: [Home](../README.md) +#### Next: [Build the triangle »](./TeachTheComputer-repetition-2.md) Previous: [Teach the computer «](./TeachTheComputer.md) Home: [Home](../Readme.md) diff --git a/Samples/Beginners/TeachTheComputer.md b/Samples/Beginners/TeachTheComputer.md index 6e94d56f5..13f6ae8a8 100644 --- a/Samples/Beginners/TeachTheComputer.md +++ b/Samples/Beginners/TeachTheComputer.md @@ -35,4 +35,4 @@ A good way to teach the computer is to start by exploring the problem yourself. The format of the output doesn't form a nice triangle yet. Let's concentrate on the values first. Try and add a couple more rows to the triangle. Copy and paste the `row2` line and add rows 3 and 4. Do the same with the `foreach` loops that write the values. -#### Next: [Less repetition »](./TeachTheComputer-repetition.md) Home: [Home](../README.md) +#### Next: [Less repetition »](./TeachTheComputer-repetition.md) Home: [Home](../Readme.md)