This commit is contained in:
2023-09-27 12:45:28 +02:00
parent 210080fe2f
commit c0e9c85775
7 changed files with 35 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
package main
import "fmt"
const secondsInHour = 3600
func main(){
fmt.Println("Hello Go World!!")
distance := 60.8
fmt.Printf("the distance in miles is %f \n", distance * 0.621)
}