RosettaCodeData/Task/Variables/Go/variables-7.go
2023-07-01 13:44:08 -04:00

5 lines
71 B
Go

func increase (x int) (more int) {
x++
more = x+x
return
}