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.

11 lines
176 B

  1. package formattools
  2. const firmament = "****************..."
  3. func Asterisks(s string) string {
  4. if len(s) < 16 {
  5. return firmament[:len(s)]
  6. } else {
  7. return firmament
  8. }
  9. }