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.

19 lines
522 B

## comcheck
### Instructions
Write a program `comcheck` that displays on the standard output `Alert!!!` followed by `\n`.
- If one of the arguments passed in parameter corresponds to the words `01`, `galaxy`, `galaxy 01`.
Examples of outputs :
```console
student@ubuntu:~/piscine/comcheck$ go build
student@ubuntu:~/piscine/comcheck$ ./comcheck "I" "Will" "Enter" "the" "galaxy"
Alert!!!
student@ubuntu:~/piscine/comcheck$ ./comcheck "galaxy 01" "do" "you" "hear" "me"
Alert!!!
student@ubuntu:~/piscine/comcheck$
```