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.
613 B
613 B
comcheck
Instructions
Write a program comcheck
that displays on the standard output Alert!!!
followed by newline ('\n'
) if at least one of the arguments passed in parameter matches the string
:
-
01
,galaxy
orgalaxy 01
. -
If none of the parameters match, the program displays a nothing.
Usage
student@ubuntu:~/piscine-go/comcheck$ go build
student@ubuntu:~/piscine-go/comcheck$ ./comcheck "I" "Will" "Enter" "the" "galaxy"
Alert!!!
student@ubuntu:~/piscine-go/comcheck$ ./comcheck "galaxy 01" "do" "you" "hear" "me"
Alert!!!
student@ubuntu:~/piscine-go/comcheck$