mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
486ea1b8ea
I accidentally removed the serial example from45348bfc3ewhile merging commit40f834d58f(PR: https://github.com/aykevl/tinygo/pull/12). Force-pushing seemed like a bad idea so here it is.
11 lines
107 B
Go
11 lines
107 B
Go
package main
|
|
|
|
import "time"
|
|
|
|
func main() {
|
|
for {
|
|
println("hello world!")
|
|
time.Sleep(time.Second)
|
|
}
|
|
}
|