document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package main
  2.  
  3. import (
  4.     "crypto/md5"
  5.     "fmt"
  6.     "io"
  7. )
  8.  
  9. func main() {
  10.     h := md5.New()
  11.     io.WriteString(h, "The fog is getting thicker!")
  12.     io.WriteString(h, "And Leon\'s getting laaarger!")
  13.     fmt.Printf("%x", h.Sum(nil))
  14. }
');