Skip to content

Instantly share code, notes, and snippets.

@bolilla
Last active August 29, 2015 14:02
Show Gist options
  • Save bolilla/62c97253ec0e75bd2638 to your computer and use it in GitHub Desktop.
Save bolilla/62c97253ec0e75bd2638 to your computer and use it in GitHub Desktop.
GoPadawan Concurrencia Librerías Once
package main
import (
"fmt"
"sync"
)
func main() {
var unaYNoMas sync.Once
tocalaSam := func() { fmt.Println("Tocando") }
tocalaOtraVezSam := func() { fmt.Println("Volviendo a tocarla") }
unaYNoMas.Do(tocalaSam)
unaYNoMas.Do(tocalaSam)
unaYNoMas.Do(tocalaOtraVezSam)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment