Skip to content

Commit cd2cb7b

Browse files
authored
changed files by pdets auto publish service, publishid[fd79c6ad-9de6-402c-b7d6-35c7542b9ece] and do [publish].
1 parent 9365b6d commit cd2cb7b

14 files changed

+26
-18
lines changed

learn-pr/wwl-language/csharp-write-first/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: "Introduction"
7-
ms.date: 02/24/2023
7+
ms.date: 04/13/2023
88
author: wwlpublish
99
ms.author: buzahid
1010
ms.topic: interactive-tutorial

learn-pr/wwl-language/csharp-write-first/2-exercise-hello-world.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Exercise - Write your first code
44
metadata:
55
title: Exercise - Write your first code
66
description: "Exercise - Write your first code"
7-
ms.date: 02/24/2023
7+
ms.date: 04/13/2023
88
author: wwlpublish
99
ms.author: buzahid
1010
ms.topic: interactive-tutorial
1111
ms.prod: learning-azure
12-
interactive: csharp
1312
durationInMinutes: 6
1413
content: |
15-
[!include[](includes/2-exercise-hello-world.md)]
14+
[!include[](includes/2-exercise-hello-world.md)]
15+
interactive: csharp

learn-pr/wwl-language/csharp-write-first/3-how-it-works.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ title: Learn how it works
44
metadata:
55
title: Learn how it works
66
description: "Learn how it works"
7-
ms.date: 02/24/2023
7+
ms.date: 04/13/2023
88
author: wwlpublish
99
ms.author: buzahid
1010
ms.topic: interactive-tutorial
1111
ms.prod: learning-azure
12-
interactive: csharp
1312
durationInMinutes: 6
1413
content: |
1514
[!include[](includes/3-how-it-works.md)]
@@ -26,4 +25,5 @@ quiz:
2625
explanation: "Incorrect. `Console.WriteLine` prints the output on the existing line and appends a new line after it."
2726
- content: "`Console.WriteLine` appends a new line after the output."
2827
isCorrect: true
29-
explanation: "Correct! `Console.WriteLine` prints the output on the existing line and appends a new line after it."
28+
explanation: "Correct! `Console.WriteLine` prints the output on the existing line and appends a new line after it."
29+
interactive: csharp

learn-pr/wwl-language/csharp-write-first/4-challenge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Complete the challenge
44
metadata:
55
title: Complete the challenge
66
description: "Complete the challenge"
7-
ms.date: 02/24/2023
7+
ms.date: 04/13/2023
88
author: wwlpublish
99
ms.author: buzahid
1010
ms.topic: interactive-tutorial
1111
ms.prod: learning-azure
12-
interactive: csharp
1312
durationInMinutes: 5
1413
content: |
15-
[!include[](includes/4-challenge.md)]
14+
[!include[](includes/4-challenge.md)]
15+
interactive: csharp

learn-pr/wwl-language/csharp-write-first/5-solution.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Review the solution
44
metadata:
55
title: Review the solution
66
description: "Review the solution"
7-
ms.date: 02/24/2023
7+
ms.date: 04/13/2023
88
author: wwlpublish
99
ms.author: buzahid
1010
ms.topic: interactive-tutorial
1111
ms.prod: learning-azure
12-
interactive: csharp
1312
durationInMinutes: 3
1413
content: |
15-
[!include[](includes/5-solution.md)]
14+
[!include[](includes/5-solution.md)]
15+
interactive: csharp

learn-pr/wwl-language/csharp-write-first/6-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Knowledge check
44
metadata:
55
title: Knowledge check
66
description: "Knowledge check"
7-
ms.date: 02/24/2023
7+
ms.date: 04/13/2023
88
author: wwlpublish
99
ms.author: buzahid
1010
ms.topic: interactive-tutorial

learn-pr/wwl-language/csharp-write-first/7-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Summary
44
metadata:
55
title: Summary
66
description: "Summary"
7-
ms.date: 02/24/2023
7+
ms.date: 04/13/2023
88
author: wwlpublish
99
ms.author: buzahid
1010
ms.topic: interactive-tutorial

learn-pr/wwl-language/csharp-write-first/includes/1-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
23
The C# programming language allows you to build many types of applications, like:
34

45
- Business applications to capture, analyze, and process data

learn-pr/wwl-language/csharp-write-first/includes/2-exercise-hello-world.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22

3+
34
In this first hands-on exercise, you'll use C# to print a hallowed programmer's phrase to the standard output of a console.
45

56
## Write your first line of code
@@ -117,7 +118,9 @@ In this task, you'll comment out the previous line of code, then add new lines o
117118
1. Press the green Run button again. This time, you should get the following output.
118119

119120
```Output
120-
Congratulations! You wrote your first lines of code.
121+
Congratulations!
122+
123+
You wrote your first lines of code.
121124
```
122125

123126
### The difference between Console.Write and Console.WriteLine

learn-pr/wwl-language/csharp-write-first/includes/3-how-it-works.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22

3+
34
To understand how your code works, you need to step back and think about what a programming language is. Consider how your code communicates commands to the computer.
45

56
## What is a programming language?
@@ -52,4 +53,4 @@ Don't worry if all of these ideas and terms don't make sense. For now, all you n
5253

5354
It's important to understand the flow of execution. In other words, your code instructions were executed in order, one line at a time, until there were no more instructions to execute. Some instructions will require the CPU to wait before it can continue. Other instructions can be used to change the flow of execution.
5455

55-
Now, let's test what you've learned. Each module features a simple challenge, and if you get stuck, you'll be supplied with a solution. In the next unit, you'll get a chance to write some C# on your own.
56+
Now, let's test what you've learned. Each module features a simple challenge, and if you get stuck, you'll be supplied with a solution. In the next unit, you'll get a chance to write some C# on your own.

0 commit comments

Comments
 (0)