Curry is from functional languages(Haskell, OCaml, F#, ...).
Curry is the one of abbreviation of labmda.

But, curry is NOT usable for racket's threading macros.

#lang racket
(require threading)
(require 2htdp/image)

(~> (star-polygon 20 20 3 "solid" "navy")
    (overlay/align/offset "right" "bottom"
                          (circle 30 "solid" "cornflowerblue")
                          -10 -10 _)
    (overlay/align/offset "right" "top"
                          (circle 30 "solid" "orchid")
                          0 10 _)
    (overlay/align/offset "left" "bottom"
                          (circle 30 "solid" "khaki")
                          10 0 _)
    (overlay/align/offset "left" "top"
                          (circle 30 "solid" "green yellow")
                          0 0 _))

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to