diff --git a/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e-inc.html b/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e-inc.html
new file mode 100644
index 0000000..eaf74c7
--- /dev/null
+++ b/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e-inc.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
package main
+
+import (
+ "fmt"
+ "math/rand"
+)
+
+const side = "right"
+
+func main() {
+ if tossCoin() == "heads" {
+ fmt.Println("Heads")
+ } else {
+ fmt.Println("Tails")
+ }
+
+ fmt.Println("Maybe:", maybe())
+}
+
+func tossCoin() string {
+ if rand.Intn(2) == 0 {
+ return "heads"
+ } else {
+ return "tails"
+ }
+}
+
+func maybe() bool {
+ if side == "right" {
+ return true
+ } else {
+ return false
+ }
+}
+
+
+
+
+
+
diff --git a/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e.out b/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e.out
new file mode 100644
index 0000000..6f7c42c
--- /dev/null
+++ b/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e.out
@@ -0,0 +1,11 @@
+mode: set
+cointoss/main.go:10.13,11.27 1 1
+cointoss/main.go:11.27,13.3 1 0
+cointoss/main.go:13.8,15.3 1 1
+cointoss/main.go:17.2,17.32 1 1
+cointoss/main.go:20.24,21.23 1 1
+cointoss/main.go:21.23,23.3 1 0
+cointoss/main.go:23.8,25.3 1 1
+cointoss/main.go:28.19,29.21 1 1
+cointoss/main.go:29.21,31.3 1 1
+cointoss/main.go:31.8,33.3 1 0
diff --git a/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e.txt b/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e.txt
new file mode 100644
index 0000000..7713fd1
--- /dev/null
+++ b/go-test-app-02/revisions/6223238cb8ce1a9f6184c02583d86fd297782b0e.txt
@@ -0,0 +1,4 @@
+cointoss/main.go:10: main 75.0%
+cointoss/main.go:20: tossCoin 66.7%
+cointoss/main.go:28: maybe 66.7%
+total: (statements) 70.0%