Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
elit-cx authored Jan 6, 2021
1 parent f3bccb9 commit cd75b5b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
package main

import "fmt"
import (
"fmt"
"time"
)

func helloworld() string {
time.Sleep(10 * time.Second)
return "Hello World!!"
}

Expand Down

0 comments on commit cd75b5b

Please sign in to comment.