mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 09:28:36 +00:00
14 lines
146 B
Go
14 lines
146 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func maybeSuffix(counter int) string {
|
|
if counter == 0 {
|
|
return ""
|
|
}
|
|
|
|
return fmt.Sprintf("%d", counter+1)
|
|
}
|