Skip to content

Instantly share code, notes, and snippets.

@cyantarek
Created June 24, 2018 16:03
Show Gist options
  • Save cyantarek/264c96d4b50dab730f914ef54e903c14 to your computer and use it in GitHub Desktop.
Save cyantarek/264c96d4b50dab730f914ef54e903c14 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"time"
)
func main() {
countFruit("Apple")
countFruit("Orange")
}
func countFruit(name string) {
for i:= 1; true; i++ {
fmt.Println(name)
time.Sleep(time.Second * 1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment