mirror of
https://github.com/golang/go
synced 2024-11-06 01:36:10 -07:00
12 lines
150 B
Plaintext
12 lines
150 B
Plaintext
|
// +build ignore
|
||
|
|
||
|
package templates
|
||
|
|
||
|
import ()
|
||
|
|
||
|
func before(x int) int { return x + x + x }
|
||
|
func after(x int) int {
|
||
|
temp := x + x
|
||
|
return temp + x
|
||
|
}
|