15 lines
268 B
C#
15 lines
268 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace consoledemo
|
|||
|
{
|
|||
|
class Program
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
var greeting = "Hello World from Global Tool";
|
|||
|
Console.WriteLine(greeting);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|