/// <summary> /// Returns the display look for IronPython. /// /// The returned string uses This \n instead of Environment.NewLine for it's line seperator /// because it is intended to be outputted through the Python I/O system. /// </summary> public static string GetLogoDisplay() { return("IronPython " + PythonContext.GetVersionString() + " on " + PythonContext.GetPlatform() + "\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n"); }