Skip to content
Snippets Groups Projects
Commit 8b9bcad2 authored by Zhu, Ling Dr (Elec Electronic Eng)'s avatar Zhu, Ling Dr (Elec Electronic Eng)
Browse files

Add files

parent 383346fb
No related branches found
No related tags found
No related merge requests found
*.exe
hello*
\ No newline at end of file
go.mod 0 → 100644
module testcode/hello
go 1.14
package main
import (
"fmt"
"time"
)
const WHOM = "Ling"
func main() {
for i:=0;i<10;i++{
fmt.Println("Hello ", WHOM)
time.Sleep(5 * time.Second)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment