MyFirstRepo/Program.cs

22 lines
343 B
C#
Raw Permalink Normal View History

2025-02-26 09:41:55 +03:00
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();
}
}
}