This is a project that calculates square roots digit-by-digit, allowing for more decimal digits than the built-in sqrt() function. For more information about the method used, see https://www.wikihow.com/Calculate-a-Square-Root-by-Hand#Finding-Square-Roots-Manually.
==UPDATE LOG== 9/19/23: Fixed the ~300-digit limit by replacing built-in operator blocks with custom ones without limitations whenever necessary. The 200,000 list-item limit means that around 12.4 million digits can now be displayed (the project will still calculate digits past that point). 9/21/23: Significantly optimized custom addition and multiplication scripts. 9/29/23: Significantly optimized custom subtraction script. 3/2/24: Small bug fixes and optimizations.