Rob van der Woude's Scripting Pages
Powered by GeSHi

Source code for sqrt_php.bat

(view source code of sqrt_php.bat as plain text)

  1. :: https://www.robvanderwoude.com/batchphp.php
  2. :: Returns square root of specified value
  3. :: Usage:  "Sqrt 36" returns "6", "Sqrt 81" returns "9"
  4. @IF NOT "%~1"=="" PHP -r print(sqrt(%~1));
  5.  

page last modified: 2024-04-16; loaded in 0.0330 seconds