1package templates 2 3import () 4 5func before(x int) int { return x + x + x } 6func after(x int) int { 7 temp := x + x 8 return temp + x 9}
View as plain text