]> gitweb.factorcode.org Git - factor.git/blob - basis/math/rectangles/prettyprint/prettyprint.factor
b1fe1789f788d3d0615a4256999c62eb762f8887
[factor.git] / basis / math / rectangles / prettyprint / prettyprint.factor
1 ! Copyright (C) 2009, 2010 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors math.rectangles kernel prettyprint.custom prettyprint.backend ;
4 IN: math.rectangles.prettyprint
5
6 M: rect pprint*
7     [
8         \ RECT: [
9             [ loc>> ] [ dim>> ] bi [ pprint* ] bi@
10         ] pprint-prefix
11     ] check-recursion ;