public Asquell(string[] script) { _script = script; _memory = new MemoryBlock(); _reflected = new ReflectedCommands(); //Default Embedded Types _reflected.Embed(typeof(Invokables.MemoryAccess)); _reflected.Embed(typeof(Invokables.MathCore)); }
public bool CreateScope(string scope) { if (_scoped.ContainsKey(scope)) return false; _scoped[scope] = new MemoryBlock(); return true; }