10 lines
126 B
Go
10 lines
126 B
Go
|
package cli
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func printList(strings []string) {
|
||
|
for _, ma := range strings {
|
||
|
fmt.Printf(" %s\n", ma)
|
||
|
}
|
||
|
}
|