Update http.client docs for PUT request and stream post-data
[factor/jcg.git] / core / words / symbol / symbol.factor
bloba107808eec35073761310c47a1e968cba061bf79
1 ! Copyright (C) 2008 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel sequences accessors definitions
4 words words.constant ;
5 IN: words.symbol
7 PREDICATE: symbol < constant ( obj -- ? )
8     [ def>> ] [ [ ] curry ] bi sequence= ;
10 M: symbol definer drop \ SYMBOL: f ;
12 M: symbol definition drop f ;
14 : define-symbol ( word -- )
15     dup define-constant ;