mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 11:37:46 +00:00
720a54a0fe
* stdlib: extend stdlib to allow import of more packages
10 lines
151 B
Go
10 lines
151 B
Go
package reflect
|
|
|
|
func DeepEqual(x, y interface{}) bool {
|
|
if x == nil || y == nil {
|
|
return x == y
|
|
}
|
|
|
|
panic("unimplemented: reflect.DeepEqual()")
|
|
}
|