2 changed files with 18 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||
package main |
|||
|
|||
import ( |
|||
"fmt" |
|||
"time" |
|||
) |
|||
|
|||
func main() { |
|||
for { |
|||
fmt.Println("Hello world!") |
|||
|
|||
time.Sleep(time.Second * 1) |
|||
} |
|||
} |
Loading…
Reference in new issue