treasurechest/treasurechest/STDIOWrapper.cs

10 lines
162 B
C#

using System;
namespace treasurechest.STDIOWrapper{
public class STDIO{
public static void O(string data){
System.Console.WriteLine(data);
}
}
}