Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "code.google.com/p/go.text/unicode/norm"
  6. )
  7.  
  8. func main() {
  9. fmt.Println(norm.IsNormalString("ŋ̊"))
  10. }
  11.  
  12. go build -o ipa ipa.go
  13.  
  14. # command-line-arguments
  15. ./ipa.go:9: undefined: norm.IsNormalString
  16. make: *** [ipa] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement