User talk:Psircleback
This is an old revision of this page, as edited by Psircleback (talk | contribs) at 20:37, July 28, 2021. It may differ significantly from current revision.
If you keep welcoming yourself, you'll go blind. RobSFree Kyle! 16:34, July 27, 2021 (EDT)
- Hell, is that what's happening, @RobS? Dang! I thought that was only with guys: don't I feel like a freaking idiot? -J Psircleback (talk) 16:37, July 28, 2021 (EDT) PS: I wrote my first 'Go' program today. Totally random choice: I came across a 'playground' (ie sandbox) and I remembered I hadn't tested my second prime series on Andy S's talk page so, an hour and some later, I had:-
// Print some early values of Nilakantha's series for Pi // Tested at <https://play.golang.org/> on July 28th 2021 package main import "fmt" import "math" func f(x int) float64 { if (x <= 0) {} else { t:= f(x-1) y:= 2*x; y= y*y; y= y*(4*y - 5) + 1 z:= float64(y); z= 6.0/z fmt.Println(t, y, z, -math.Ceil(math.Log10(z))) // Show my working return t+z } return 3.0 } func main() { fmt.Println("Hello, Jane Doe! Here are some approximations of Pi:") fmt.Println(f(10)) }