Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…anything

Conflicts:
	backend.go
  • Loading branch information
James Lu authored and James Lu committed Apr 12, 2015
2 parents 36354ea + 6657f40 commit 4fe7c63
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion code/backend.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
package main

import "fmt"
import "time"

func main() {
fmt.Println("Yep, this should serve content")
fmt.Println("As long as the content you're hoping to serve is exactly these strings, and the location you're looking to serve them to is exactly standard out.")

fmt.Println("get up")
time.Sleep(1)
fmt.Println("get on up")
time.Sleep(1)
fmt.Println("get up")
time.Sleep(1)
fmt.Println("get on up")
time.Sleep(1)
fmt.Println("and DANCE")
time.Sleep(1)
fmt.Println(":D--<")
time.Sleep(1)
fmt.Println(":D|-<")
time.Sleep(1)
fmt.Println(":D/-<")
time.Sleep(1)
// Naturaly & logically here should be a panic.
fmt.Println("Panicking!")
panic("Aaaaa")
Expand Down

0 comments on commit 4fe7c63

Please sign in to comment.