This commit is contained in:
Ingy döt Net 2013-04-10 16:19:29 -07:00
parent e5e8880e41
commit 518da4a923
1019 changed files with 15877 additions and 0 deletions

View file

@ -0,0 +1,5 @@
: (& 6 3)
-> 2
: (& 7 3 1)
-> 1

View file

@ -0,0 +1,8 @@
: (bit? 1 2)
-> NIL
: (bit? 6 3)
-> NIL
: (bit? 6 15 255)
-> 6

View file

@ -0,0 +1,5 @@
: (| 1 2)
-> 3
: (| 1 2 4 8)
-> 15

View file

@ -0,0 +1,5 @@
: (x| 2 7)
-> 5
: (x| 2 7 1)
-> 4

View file

@ -0,0 +1,11 @@
: (>> 1 8)
-> 4
: (>> 3 16)
-> 2
: (>> -3 16)
-> 128
: (>> -1 -16)
-> -32