Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
6
Task/Variadic-function/Go/variadic-function-1.go
Normal file
6
Task/Variadic-function/Go/variadic-function-1.go
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
func printAll(things ... string) {
|
||||
// it's as if you declared "things" as a []string, containing all the arguments
|
||||
for _, x := range things {
|
||||
fmt.Println(x)
|
||||
}
|
||||
}
|
||||
2
Task/Variadic-function/Go/variadic-function-2.go
Normal file
2
Task/Variadic-function/Go/variadic-function-2.go
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
args := []string{"foo", "bar"}
|
||||
printAll(args...)
|
||||
Loading…
Add table
Add a link
Reference in a new issue