REBOL [
    Title:   "Encoding Binary Data in REBOL Scripts"
    Date:    30-May-2000
    File:    %bin-save.r
    Purpose: {
        Example of how to save base-64 encoded binary data in REBOL scripts.
        (See bin-data.r as an example of how to decode the data.)
    }
    Category: [file util 1] 
]

data: read/binary %rebol-banner.gif

system/options/binary-base: 64

save %banner.r data