1
2
3
4
5
6
7
USING: kernel calendar prettyprint ;

: n_days_later ( n -- quot )
    [ +day ] curry ;

! example
now dup . 5 n_days_later call .