Skip to content

Instantly share code, notes, and snippets.

@AlexBlokh
Last active December 31, 2020 17:42
Show Gist options
  • Save AlexBlokh/6c034d6b715e6035ee1d890b50b5d284 to your computer and use it in GitHub Desktop.
Save AlexBlokh/6c034d6b715e6035ee1d890b50b5d284 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"time"
)
func main() {
for true {
fmt.Println("Hello !!")
time.Sleep(1 * time.Second)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment