all repos — min @ 520b95a1385160226625ffcd95f457c4d32589c3

A small but practical concatenative programming language.

added `shl` and `shr` unit tests for `binary` module
drkameleon yaniszaf@gmail.com
Thu, 21 Jan 2021 14:00:57 +0100
commit

520b95a1385160226625ffcd95f457c4d32589c3

parent

5fc39730327cc89614af2992a7f95392e9ad5f63

1 files changed, 4 insertions(+), 0 deletions(-)

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

@@ -10,6 +10,10 @@

(2 3 bitor 3 ==) assert (2 3 bitxor 1 ==) assert + + (2 3 shl 16 ==) assert + + (16 3 shr 2 ==) assert report clear-stack