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() { total := myFunction(1, 2) fmt.Println(total) }
3