Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

R3 compatible MAP (See related posts)

; Not terrribly efficient, but it works.
    ; R3-compatible interface
    map: func ['word data [block!] body [block!]] [
        collect/only res compose/deep [
            repeat (word) data [res: do bind/copy body (to lit-word! word)]
        ]
    ]

You need to create an account or log in to post comments to this site.


Click here to browse all 4829 code snippets

Related Posts