14 lines
123 B
Go
14 lines
123 B
Go
![]() |
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
for {
|
||
|
time.Sleep(time.Second)
|
||
|
fmt.Println("hello, world")
|
||
|
}
|
||
|
}
|