46
1
using System;
2
using Common;
3
public class Program
4
{
5
public static void Main()
6
{
7
Console.WriteLine("\nPrinting dotted line");
8
Utils.DrawDottedLine();
9
10
11
Console.WriteLine("\nPrinting symbol");
12
Utils.DrawSymbol('#');
13
14
Console.WriteLine("\nPrinting line");
15
Utils.DrawLine();
16
}
17
18
19
20
21
22
}
23
24
namespace Common
Cached Result