GitBucket
4.23.0
Toggle navigation
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
sample-golang
/
01_hello
Browse code
add sample
master
1 parent
0dd4767
commit
169ef86b36d9e58d5e2a5ecb7e92f460cca766e4
yhornisse
authored
on 27 Sep 2021
Patch
Showing
1 changed file
func/vargs.go
Ignore Space
Show notes
View
func/vargs.go
0 → 100644
package main import "fmt" func hoge(vals ...int64) { fmt.Println(len(vals)) } func main() { hoge(1, 2, 3) }
Show line notes below