First commit

This commit is contained in:
Jae Kwon
2015-10-21 12:15:19 -07:00
commit 16372365c4
21 changed files with 1850 additions and 0 deletions

5
array.go Normal file
View File

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