22 lines
343 B
C#
22 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ConsoleGitea
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Hi");
|
|
int a = 42;
|
|
int b = 119;
|
|
int c = a + b;
|
|
Console.WriteLine(c);
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|