Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
package main import ("fmt") func myFunction(x int, y int) (result int) { result = x + y return } func main() { fmt.Println(myFunction(1, 2)) }
3