10 lines
80 B
Go
10 lines
80 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
a := 3
|
|
b := a / 2
|
|
fmt.Println(b)
|
|
}
|