Skip to content

Commit

Permalink
Merge pull request #469 from fasterthanlime/master
Browse files Browse the repository at this point in the history
Add ooc version of `yo`, make go version consistent
  • Loading branch information
James Lu authored and James Lu committed Apr 8, 2015
2 parents 2f87392 + c2b05d9 commit e2e0e48
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 4 additions & 2 deletions yo.go
@@ -1,9 +1,11 @@
package main

import (
"fmt"
"fmt"
"time"
)

func main() {
fmt.Printf("yo!!")
fmt.Printf("yo!!\n")
time.Sleep(time.Second)
}
4 changes: 4 additions & 0 deletions yo.ooc
@@ -0,0 +1,4 @@
import os/Time

"yo" println()
Time sleepSec(1)

0 comments on commit e2e0e48

Please sign in to comment.