Skip to content

Instantly share code, notes, and snippets.

@koba-yu
Last active September 18, 2016 05:34
Show Gist options
  • Save koba-yu/e86f36f3f6e3b3df8a4255ce3fd852cc to your computer and use it in GitHub Desktop.
Save koba-yu/e86f36f3f6e3b3df8a4255ce3fd852cc to your computer and use it in GitHub Desktop.
Redのobject!のインスタンスの比較の挙動
Red[]
; object!の比較ではフィールドの値が比較される模様。aとbを比較するとtrue。aとcだとfalse
a: make object! [name: "Alice" surname: "Gold"]
b: make object! [name: "Alice" surname: "Gold"]
c: make object! [name: "Bob" surname: "Gold"]
a = b
; returns true
a = c
; returns false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment