5 lines
89 B
Go
5 lines
89 B
Go
package main
|
|
|
|
func appendInts(s []int, elem ...int) []int {
|
|
return append(s, elem...)
|
|
}
|