Skip to content

Commit 6e4fa0e

Browse files
Update Variables.cs
1 parent 1c3ba2a commit 6e4fa0e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Variables.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
//in order to use the console class we need to declare the system library
33
namespace Variables
44
{
5-
class Program
5+
class Program
66
{
7-
static void logln(object o)
8-
{
9-
Console.WriteLine(o);
10-
}
7+
static void logln(object o)
8+
{
9+
Console.WriteLine(o);
10+
}
1111
static void Main(string[] args)
1212
{
1313
//byte number;
14-
//before we can display the number on the console we have to //initialize it
15-
byte number=2;
14+
//before we can display the number on the console we have to //initialize it
15+
byte number=2;
1616
int count=10;
1717
//I cannot write the statement below
1818
//float totalPrice=20.95;
@@ -38,7 +38,7 @@ static void Main(string[] args)
3838
var character9='b';
3939
var firstName1= "Joseph";
4040
var isWorking9=false;
41-
41+
4242
}
4343
}
4444
}

0 commit comments

Comments
 (0)