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