(view source code of sqrt_php.bat as plain text)
:: https://www.robvanderwoude.com/batchphp.php
:: Returns square root of specified value
:: Usage: "Sqrt 36" returns "6", "Sqrt 81" returns "9"
@IF NOT "%~1"=="" PHP -r print(sqrt(%~1));
page last modified: 2024-04-16; loaded in 0.0092 seconds