Paste: Stack effect error
Author: | rn443 |
Mode: | factor |
Date: | Thu, 17 May 2012 18:45:33 |
Plain Text |
SYMBOL: _
: marker-at ( x y board -- marker ) nth nth ;
: occupied? ( x y board -- ? ) marker-at _ eq? not ;
:: in-bounds? ( x y board -- ? ) x y [ 0 >= ] bi@ and
x y [ board length < ] bi@ and and ;
: available? ( x y board -- ? ) 3dup in-bounds? [ occupied? not ] when ;
Author: | otoburb |
Mode: | factor |
Date: | Fri, 18 May 2012 00:59:25 |
Plain Text |
: available? ( x y board -- ? ) 3dup in-bounds? [ occupied? not ] [ 3drop f ] if ;
New Annotation