Exercise 1.05
Exercise 1.05 // sicp 1.05 package main import "fmt" func p() int { return p() } func test(x, y int) int { if x == 0 { return 0 } else { return y } } func main() { fmt.Println(test(0, p())) }
A Tribute to SICP in the Spirit of SICP JS.