RosettaCodeData/Task/Introspection/Factor/introspection-1.factor

10 lines
252 B
Factor
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
: if-older ( n true false -- )
[ build > ] 2dip if ; inline
: when-older ( n true -- )
[ ] if-older ; inline
: unless-older ( n false -- )
[ [ ] ] dip if-older ; inline
900 [ "Your version of Factor is too old." print 1 exit ] when-older