diff --git a/da6953e43eb53dbdf163a5effdf900bda8aa2eb3.html b/da6953e43eb53dbdf163a5effdf900bda8aa2eb3.html
new file mode 100644
index 0000000..649186f
--- /dev/null
+++ b/da6953e43eb53dbdf163a5effdf900bda8aa2eb3.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
package main
+
+import (
+ "fmt"
+ "math/rand"
+)
+
+func main() {
+ if tossCoin() == "heads" {
+ fmt.Println("Heads")
+ } else {
+ fmt.Println("Tails")
+ }
+}
+
+func tossCoin() string {
+ if rand.Intn(2) == 0 {
+ return "heads"
+ } else {
+ return "tails"
+ }
+}
+
+
+
+
+
+