File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 2
2
//in order to use the console class we need to declare the system library
3
3
namespace Variables
4
4
{
5
- class Program
5
+ class Program
6
6
{
7
- static void logln ( object o )
8
- {
9
- Console . WriteLine ( o ) ;
10
- }
7
+ static void logln ( object o )
8
+ {
9
+ Console . WriteLine ( o ) ;
10
+ }
11
11
static void Main ( string [ ] args )
12
12
{
13
13
//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 ;
16
16
int count = 10 ;
17
17
//I cannot write the statement below
18
18
//float totalPrice=20.95;
@@ -38,7 +38,7 @@ static void Main(string[] args)
38
38
var character9 = 'b' ;
39
39
var firstName1 = "Joseph" ;
40
40
var isWorking9 = false ;
41
-
41
+
42
42
}
43
43
}
44
44
}
You can’t perform that action at this time.
0 commit comments