IN: temporary USING: dlists kernel strings tools.test math ; [ "junk" ] [ 5 over dlist-push-end "junk" over dlist-push-end 20 over dlist-push-end [ string? ] swap dlist-remove ] unit-test [ 5 20 ] [ 5 over dlist-push-end "junk" over dlist-push-end 20 over dlist-push-end [ string? ] over dlist-remove drop [ ] dlist-each ] unit-test [ "junk" ] [ 5 over dlist-push-end "junk" over dlist-push-end 20 over dlist-push-end [ integer? ] over dlist-remove drop [ integer? ] over dlist-remove drop [ ] dlist-each ] unit-test [ t ] [ 5 over dlist-push-end "junk" over dlist-push-end 20 over dlist-push-end [ string? ] swap dlist-contains? ] unit-test [ t ] [ 5 over dlist-push-end "junk" over dlist-push-end 20 over dlist-push-end [ integer? ] swap dlist-contains? ] unit-test [ f ] [ 5 over dlist-push-end "junk" over dlist-push-end 20 over dlist-push-end [ string? ] over dlist-remove drop [ string? ] swap dlist-contains? ] unit-test