SilkyFalcon

Generation

generate functionWed, 07 Dec 2022

Most advanced things in go

package main import "fmt" func returnTwoValues() (int, int) { return 5, 6 } func main() { n1, n2 := returnTwoValues() fmt.Println(n1, n2) }

Want to kickstart your project?Use the new AI Studio to create your code