Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
package main import ("fmt") func myFunction(x int, y string) (result int, txt1 string) { result = x + x txt1 = y + " World!" return } func main() { _, b := myFunction(5, "Hello") fmt.Println(b) }
Hello World!