All quizzes
GoIntroPredict the output

What does this program print?

package main

import "fmt"

func main() {
	fmt.Println(7 / 2)
	fmt.Println(7.0 / 2)
}