saving development state...

This commit is contained in:
Jae Kwon
2014-08-10 16:35:08 -07:00
parent 50544c50af
commit d300a67bb1
46 changed files with 2458 additions and 1058 deletions

View File

@ -6,11 +6,11 @@ type String string
// String
func (self String) Equals(other Binary) bool {
func (self String) Equals(other interface{}) bool {
return self == other
}
func (self String) Less(other Binary) bool {
func (self String) Less(other interface{}) bool {
if o, ok := other.(String); ok {
return self < o
} else {