2012-09-26 21:07:53 -04:00
|
|
|
! Copyright (C) 2012 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license
|
2018-02-15 10:14:56 -05:00
|
|
|
USING: arrays sequences.zipped tools.test ;
|
2012-09-26 21:07:53 -04:00
|
|
|
|
|
|
|
{ { { 1 4 } { 2 5 } { 3 6 } } }
|
|
|
|
[ { 1 2 3 } { 4 5 6 } <zipped> >array ] unit-test
|