Verlinkungen zu Beispielen eingefügt.

This commit is contained in:
SourceFellows
2020-10-21 06:05:47 +02:00
parent 264c517cec
commit ee1ecf0924
5 changed files with 194 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Printf("Hello %q", "hello")
}

View File

@ -0,0 +1,12 @@
package main
import "fmt"
func something(text string, i ...int) int {
fmt.Println(i[0])
return i[1]
}
func main() {
fmt.Println(something("hello", 1, 2))
}