5 lines
50 B
Go
5 lines
50 B
Go
|
|
func inc(n int) {
|
||
|
|
x := n + 1
|
||
|
|
println(x)
|
||
|
|
}
|