Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.13 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. package main
  2.  
  3. import "mp3"
  4. import "os"
  5. import "time"
  6.  
  7. func main() {
  8.         go func() {
  9.                 mp3.DecodeTrack(os.Args[1])
  10.         }()
  11.  
  12.         time.Sleep(5e9)
  13. }