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.
19 lines
427 B
19 lines
427 B
package main |
|
|
|
import ( |
|
"github.com/01-edu/z01" |
|
) |
|
|
|
func main() { |
|
arg1 := []string{""} |
|
arg2 := []string{"One", "ring!"} |
|
arg3 := []string{"testing spaces and #!*"} |
|
arg4 := []string{"more", "than", "three", "arguments"} |
|
arg5 := []string{"Upper anD LoWer cAsE"} |
|
arg6 := []string{z01.RandWords()} |
|
args := [][]string{arg1, arg2, arg3, arg4, arg5, arg6} |
|
|
|
for _, v := range args { |
|
z01.ChallengeMain("alphamirror", v...) |
|
} |
|
}
|
|
|