From 485c77a1f3c0e984904abb880b3fc0eb9ddfcdef Mon Sep 17 00:00:00 2001 From: mhrohan <61575417+mhrohan@users.noreply.github.com> Date: Tue, 27 Sep 2022 18:47:28 +0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20Fixed=20in=20Introducing=20Varia?= =?UTF-8?q?bles>reassingn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed a section of Code in Introducing Variables> reassign. >Variable "aFriend" was not created >>Added a variable called "aFriend" --- misc/Getting started with .NET.dib | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/Getting started with .NET.dib b/misc/Getting started with .NET.dib index 715c719..48eb7ed 100644 --- a/misc/Getting started with .NET.dib +++ b/misc/Getting started with .NET.dib @@ -43,6 +43,7 @@ You can also re-assign different values to a variable, like so: #!csharp +string aFriend; aFriend = "Maira"; Console.WriteLine(aFriend);