Files
go-nkode/main.go
2024-08-17 10:26:02 -05:00

10 lines
80 B
Go

package main
import "fmt"
func main() {
a := 3
b := a / 2
fmt.Println(b)
}