gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/range8.go (about) 1 package main 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 func main() { 9 for _ = range time.Tick(time.Millisecond) { 10 fmt.Println("success") 11 return 12 } 13 } 14 15 // Output: 16 // success