Exercise 1.02

Exercise 1.02


// sicp 1.02
package main

import "fmt"

func main() {
	answ := (5 + 4 + (2 - (3 - (6 + 1.0/3)))) / (3 * (6 - 2) * (2 - 7))
	fmt.Println(answ)
}

Popular posts from this blog

Exercise 1.01

Exercise 1.03