From 4f8ef2a3127f01ff98773754693697bf6d4febee Mon Sep 17 00:00:00 2001 From: acicchetti Date: Tue, 30 Oct 2018 08:11:47 -0400 Subject: [PATCH] Initial Commit --- l0.go | 11 +++++++++++ malacandra.go | 9 +++++++++ mars.go | 9 +++++++++ rand.go | 16 ++++++++++++++++ 4 files changed, 45 insertions(+) create mode 100644 l0.go create mode 100644 malacandra.go create mode 100644 mars.go create mode 100644 rand.go diff --git a/l0.go b/l0.go new file mode 100644 index 0000000..e3f4166 --- /dev/null +++ b/l0.go @@ -0,0 +1,11 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("hello moto") +} + + diff --git a/malacandra.go b/malacandra.go new file mode 100644 index 0000000..b2a8e6a --- /dev/null +++ b/malacandra.go @@ -0,0 +1,9 @@ +package main + +import "fmt" + +func main() { + const dist = 56000000 + + fmt.Printf("You'd reach Malacandra in 28 days if you travelled %v km/h", dist/28/24) +} diff --git a/mars.go b/mars.go new file mode 100644 index 0000000..15e22f4 --- /dev/null +++ b/mars.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("My weight on the surface of Mars is", 155, "lbs, and I would be", 24 * 365/687, "years old") +} diff --git a/rand.go b/rand.go new file mode 100644 index 0000000..24ed889 --- /dev/null +++ b/rand.go @@ -0,0 +1,16 @@ +package main + +import ( + "fmt" + "math/rand" + "time" +) + +func main() { + rand.Seed(time.Now().UnixNano()) + var num = rand.Intn(10) + 1 + fmt.Println(num) + + num = rand.Intn(10) + 1 + fmt.Println(num) +}