/// <summary> /// Delete the Script with the given name from memory (with garbage collection). /// </summary> /// <param name="r">The RAM used for this execution.</param> /// <param name="scriptName">The name of the Script to delete (nested brack operations execute).</param> public void DeleteScript(RAM r, object scriptName) { GlobalMemory.DeleteScript(r, scriptName); }
/// <summary> /// Delete the Script with the given name from memory (with garbage collection). /// </summary> /// <param name="scriptName">The name of the Script to delete.</param> public void DeleteScript(string scriptName) { GlobalMemory.DeleteScript(scriptName); }