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.
29 lines
392 B
29 lines
392 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/01-edu/z01"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
if len(os.Args) == 2 {
|
||
|
for i := 0; i < len(os.Args[1]); i++ {
|
||
|
if os.Args[1][i] != ' ' {
|
||
|
z01.PrintRune(rune(os.Args[1][i]))
|
||
|
|
||
|
if i != len(os.Args[1])-1 {
|
||
|
if os.Args[1][i+1] == ' ' {
|
||
|
z01.PrintRune('\n')
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
z01.PrintRune('\n')
|
||
|
} else {
|
||
|
fmt.Println()
|
||
|
}
|
||
|
}
|