Sha256: 5dd45aa4689794b8ca2c51f26db25959d39aa674dbee4342311e213d8e9974fb
Contents?: true
Size: 437 Bytes
Versions: 18
Compression:
Stored size: 437 Bytes
Contents
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace RhoLogServer { class Program { static void Main(string[] args) { String path = args.Length > 0 ? args[0] : ""; SocketServer server = new SocketServer(path); while (true) { Thread.Sleep(100); } } } }
Version data entries
18 entries across 18 versions & 1 rubygems