mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
201 B
15 lines
201 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
5 years ago
|
"fmt"
|
||
5 years ago
|
"os"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
5 years ago
|
if len(os.Args[1:])%2 == 0 {
|
||
5 years ago
|
fmt.Println("I have an even number of arguments")
|
||
5 years ago
|
} else {
|
||
5 years ago
|
fmt.Println("I have an odd number of arguments")
|
||
5 years ago
|
}
|
||
|
}
|