goc/tests/samples/simple_agent/main.go

12 lines
109 B
Go
Raw Normal View History

package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("hello")
time.Sleep(time.Second * 15)
}