blob: 3198c9fa2fcbc6e04f2bab9af2cb2ebc80a64214 [file] [log] [blame]
-- functionextraction_extract_issue_44813_6_2 --
package extract
import "fmt"
func main() {
//@mark(exSt9, "x")
x := newFunction() //@mark(exEn9, "}")
//@extractfunc(exSt9, exEn9)
fmt.Printf("%x\n", x)
}
func newFunction() []rune {
x := []rune{}
s := "HELLO"
for _, c := range s {
x = append(x, c)
}
return x
}