diff --git a/application_structure/main.go b/application_structure/main.go index e69de29..7023b68 100644 --- a/application_structure/main.go +++ b/application_structure/main.go @@ -0,0 +1,10 @@ +package main + +import "fmt" +const secondsInHour = 3600 + +func main(){ + fmt.Println("Hello Go World!!") + distance := 60.8 //distance in km + fmt.Printf("the distance in miles is %f \n", distance * 0.621) +} \ No newline at end of file