mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 06:23:59 +08:00
14 lines
187 B
Go
Executable File
14 lines
187 B
Go
Executable File
// test_oddeven.go
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"./even/even"
|
|
)
|
|
|
|
func main() {
|
|
for i:=0; i<=100; i++ {
|
|
fmt.Printf("Is the integer %d even? %v\n", i, even.Even(i))
|
|
}
|
|
}
|