examples: add hello world serial communication

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2018-09-19 22:38:29 +02:00
parent c0d1963d63
commit 45348bfc3e
+10
View File
@@ -0,0 +1,10 @@
package main
import "time"
func main() {
for {
println("hello world!")
time.Sleep(time.Second)
}
}