github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/src/examples/empty/main.go (about) 1 package main 2 3 import "time" 4 5 // This is used for smoke tests for chips without an associated board. 6 7 func main() { 8 for { 9 time.Sleep(time.Second) 10 } 11 }