github.com/neugram/ng@v0.0.0-20180309130942-d472ff93d872/eval/testdata/import5.ng (about) 1 import ("os"; "crypto/md5") 2 3 h:= md5.New() 4 h.Write([]byte("hello")) 5 s := h.Sum(nil) 6 7 if s[0] == 93 { 8 print("OK") 9 }