Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
a guest
Aug 21st, 2017
83
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
text
0.18 KB
| None
|
0
0
raw
download
clone
embed
print
report
package main
import (
"log"
"time"
)
func main() {
t := time.NewTicker(10 * time.Second)
for {
helloworld()
<-t.C
}
}
func helloworld() {
log.Printf("Hello, World!\n")
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
MM rando seed 3/2
2 hours ago | 26.54 KB
Untitled
2 hours ago | 11.41 KB
Untitled
6 hours ago | 11.66 KB
Untitled
10 hours ago | 7.48 KB
Untitled
12 hours ago | 8.03 KB
Untitled
14 hours ago | 7.54 KB
Untitled
16 hours ago | 7.45 KB
Untitled
18 hours ago | 7.55 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!