mirror of
https://github.com/hyprspace/hyprspace.git
synced 2026-09-12 19:51:07 +05:00
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)
|
|
}
|
|
}
|