all repos — min @ 9ebe93854ff2dfe6db78559f59d65765b94a000e

A small but practical concatenative programming language.

added unit test for `binary` module
drkameleon yaniszaf@gmail.com
Thu, 21 Jan 2021 13:55:49 +0100
commit

9ebe93854ff2dfe6db78559f59d65765b94a000e

parent

2e08253a3f1499cdab427bc1cc6b12cb6e268f15

2 files changed, 16 insertions(+), 0 deletions(-)

jump to
M tests/all.mintests/all.min

@@ -19,6 +19,7 @@ 'sys load

'time load 'dstore load 'fs load +'binary load 'crypto load 'math load 'http load
A tests/binary.min

@@ -0,0 +1,15 @@

+'test load +'test import + +"binary" describe + + (2 3 bitand 2 ==) assert + + (123 bitnot -124 ==) assert + + (2 3 bitor 3 ==) assert + + (2 3 bitxor 1 ==) assert + + report + clear-stack