15 lines
128 B
Go
15 lines
128 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
for {
|
||
|
fmt.Println("Hello world!")
|
||
|
|
||
|
time.Sleep(time.Second * 1)
|
||
|
}
|
||
|
}
|