Begin writing debora

This commit is contained in:
Jae Kwon
2015-04-14 04:14:18 -07:00
parent bcfe33f15c
commit 89e05168d5
10 changed files with 97 additions and 14 deletions

5
common/array.go Normal file
View File

@@ -0,0 +1,5 @@
package common
func Arr(items ...interface{}) []interface{} {
return items
}