mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
21 lines
234 B
Plaintext
21 lines
234 B
Plaintext
#!markdown
|
|
|
|
# Chapter 1 - Hello, C#! Welcome, .NET!
|
|
Mixing *rich* **text** and code is cool!
|
|
|
|
#!csharp
|
|
|
|
#!about
|
|
|
|
#!csharp
|
|
|
|
Console.WriteLine("Hello, .NET Interactive!")
|
|
|
|
#!csharp
|
|
|
|
var number = 8;
|
|
|
|
#!csharp
|
|
|
|
Console.WriteLine(number);
|