2009-02-12 23:13:16 -05:00
|
|
|
! Copyright (C) 2009 Jason W. Merrill.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2015-07-21 15:35:08 -04:00
|
|
|
USING: accessors effects kernel lexer math.ranges parser
|
|
|
|
sequences words ;
|
2009-02-12 23:13:16 -05:00
|
|
|
IN: math.derivatives.syntax
|
|
|
|
|
2015-06-29 19:43:15 -04:00
|
|
|
SYNTAX: DERIVATIVE: scan-object dup stack-effect in>> length [1,b]
|
2015-07-21 15:35:08 -04:00
|
|
|
[ drop scan-object ] map ";" expect
|
2015-06-29 19:43:15 -04:00
|
|
|
"derivative" set-word-prop ;
|