adding cs142 code

This commit is contained in:
dm
2016-04-06 20:45:34 -07:00
parent 552d456d53
commit 8e52ce1982
174 changed files with 14064 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
include $(GOROOT)/src/Make.inc
TARG=grades
GOFILES=\
grades.go
include $(GOROOT)/src/Make.cmd
+10
View File
@@ -0,0 +1,10 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("hello")
}