mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
11 lines
150 B
C#
11 lines
150 B
C#
using System;
|
|
|
|
class MyTest
|
|
{
|
|
static void Main()
|
|
{
|
|
int myLocal = 5;
|
|
Console.WriteLine("Hi");
|
|
Console.WriteLine("Value:" + myLocal);
|
|
}
|
|
}
|