treasurechest/treasurechest/STDIOWrapper.cs

10 lines
162 B
C#
Raw Normal View History

2020-05-08 13:38:08 +00:00
using System;
namespace treasurechest.STDIOWrapper{
public class STDIO{
public static void O(string data){
System.Console.WriteLine(data);
}
}
}