## 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$ ```