20 lines
462 B
C#
20 lines
462 B
C#
namespace StaticogIkkestatic
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
ShowSeperatorRow();
|
|
Console.WriteLine("Navn: Stavern");
|
|
Console.WriteLine("Kommune: Larvik");
|
|
Console.WriteLine("Fylke: Vestfold");
|
|
ShowSeperatorRow();
|
|
}
|
|
static void ShowSeperatorRow()
|
|
{
|
|
Console.WriteLine("****************************");
|
|
}
|
|
}
|
|
}
|
|
|