More parsing. Go fmt.

This commit is contained in:
Daniel Jones 2013-02-26 11:33:07 -08:00
parent d129ff285c
commit 6da2555966
5 changed files with 671 additions and 355 deletions

9
mk.go
View file

@ -1,10 +1,13 @@
package main
import (
"fmt"
"io/ioutil"
"os"
)
func main() {
input, _ := ioutil.ReadAll(os.Stdin)
rs := parse(string(input), "<stdin>")
fmt.Println(rs)
}