AjErl.Modules.IoModule.IoModule C# (CSharp) Метод

IoModule() публичный Метод

public IoModule ( System.Machine machine ) : System
machine System.Machine
Результат System
        public IoModule(Machine machine)
            : base(machine.RootContext)
        {
            this.machine = machine;
            this.ok = new Atom("ok");
            this.SetName("io");
            this.Context.SetValue("write/1", new FuncFunction(this.Write));
            this.AddExportNames(new string[] { "write/1" });
            this.Context.SetValue("nl/0", new FuncFunction(this.Nl));
            this.AddExportNames(new string[] { "nl/0" });
        }