Skip to content

Instantly share code, notes, and snippets.

@gakuzzzz
Created February 14, 2014 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gakuzzzz/8994841 to your computer and use it in GitHub Desktop.
Save gakuzzzz/8994841 to your computer and use it in GitHub Desktop.
アレ
scala> 5 & 6
res0: Int = 4
scala> 5 | 6
res1: Int = 7
scala> 10 & 13
res2: Int = 8
scala> 10 | 13
res3: Int = 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment