Skip to content

Commit b78c173

Browse files
Merge pull request #49683 from v-thpra/azure-triage-fix-1037374
Technical Review 1037374: Write your first F# code
2 parents 6bc4e0c + 3e6b3af commit b78c173

19 files changed

+82
-76
lines changed

learn-pr/language/fsharp-first-steps/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: introduction
66
title: "Introduction"
77
description: "What is F# and what can you build with it?"
8-
ms.date: 02/22/2023
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/2-what-is-fsharp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: learning-content
66
title: "What is F#?"
77
description: "F# is an open-source, cross-platform programming language that makes it easy to write succinct, performant, robust, and practical code"
8-
ms.date: 02/22/2023
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/3-fsharp-development-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: learning-content
66
title: "F# development environment"
77
description: "Overview of tools to help you build F# applications"
8-
ms.date: 02/22/2023
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/4-set-up-development-environment-exercise.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: Exercise - Set up your F# development environment
44
metadata:
55
unitType: exercise
66
title: "Exercise - Set up your F# development environment"
7-
description: "Install the .NET SDK, Visual Studio Code, and Ionide F# extension to develop your F# applications"
8-
ms.date: 02/22/2023
7+
description: "Install the .NET SDK, Visual Studio Code, and Ionide F# extension for developing your F# application."
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/5-fsharp-interactive.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: learning-content
66
title: "What is F# Interactive?"
77
description: "Learn what F# Interactive is and how you can use it to evaluate code and scripts in real-time"
8-
ms.date: 02/22/2023
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/6-write-your-first.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: Exercise - Write your first line of F# code
44
metadata:
55
unitType: exercise
66
title: "Exercise - Write your first line of F# code"
7-
description: "Use F# Interactive to print Hello World to the console"
8-
ms.date: 02/22/2023
7+
description: "Use F# Interactive to print Hello World to the console."
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/7-fsharp-build-application.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: Create F# applications
44
metadata:
55
unitType: learning-content
66
title: "Create F# applications"
7-
description: "Overview of .NET templates and how they can help you build your first F# application"
8-
ms.date: 02/22/2023
7+
description: "Overview of .NET templates and how they can help you build your first F# application."
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/8-build-your-first.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: Exercise - Create your first F# application
44
metadata:
55
unitType: exercise
66
title: "Exercise - Create your first F# application"
7-
description: "Create an F# application to print out a message to a text console"
8-
ms.date: 02/22/2023
7+
description: "Create an F# application to print a message to a text console."
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/9-summary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: Summary
44
metadata:
55
unitType: summary
66
title: "Summary"
7-
description: "In this module you set up your F# development environment, wrote your first line of F# code, and built your first F# application"
8-
ms.date: 02/22/2023
7+
description: "In this module you set up your F# development environment, wrote your first line of F# code, and built your first F# application."
8+
ms.date: 03/26/2025
99
author: baronfel
1010
ms.author: chethusk
1111
ms.topic: unit

learn-pr/language/fsharp-first-steps/includes/1-introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
F# is an open-source, cross-platform programming language that makes it easy to write succinct, performant, robust, and practical code
1+
F# is an open-source, cross-platform programming language that makes it easy to write succinct, performant, robust, and practical code.
22

33
With F#, you can build applications like:
44

@@ -16,10 +16,10 @@ With F#, you can build applications like:
1616

1717
In this module, you'll:
1818

19-
- Understand what makes F# a good language for building applications
19+
- Understand what makes F# a good language for building applications.
2020
- Write your first line of F# code.
2121
- Build your first F# console application.
2222

2323
## What is the main goal?
2424

25-
By the end of this module, you'll be able to write F# code to print a message to a text console, like the Windows command prompt or Linux bash shell. These lines of code provide you with your first look at the F# syntax, and immediately provide invaluable insights into what makes F# a great programming language.
25+
By the end of this module, you're able to write F# code to print a message to a text console, like the Windows command prompt or Linux bash shell. These lines of code provide you with your first look at the F# syntax, and immediately provide invaluable insights into what makes F# a great programming language.

0 commit comments

Comments
 (0)