mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
16 lines
327 B
C#
16 lines
327 B
C#
using System;
|
|
|
|
namespace IL2CPU
|
|
{
|
|
public class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
return Cosmos.IL2CPU.Program.Run(args, Console.WriteLine, s =>
|
|
{
|
|
Console.Write("Error: ");
|
|
Console.WriteLine(s);
|
|
});
|
|
}
|
|
}
|
|
}
|