Skip to content

Commit 31a7bc0

Browse files
authored
Update and rename Simple Operations and Calculations - Lab to 01. Greeting by Name
1 parent 3dc6c22 commit 31a7bc0

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

01. Greeting by Name

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System;
2+
3+
namespace GreetingByName
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
string name = Console.ReadLine();
10+
Console.WriteLine("Hello, {0}!",name);
11+
}
12+
}
13+
}

Simple Operations and Calculations - Lab

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)