sqr.bmx 144 B

123456789
  1. Rem
  2. Square root of x
  3. End Rem
  4. Function Length!(x!,y!)
  5. return Sqr(x*x+y*y)
  6. End Function
  7. Print "The length of the vector 25,3 is "+Length(25,3)