An example of this feature in Ruby:
# After the magic __END__, anything left in the file is treated as unescaped string data,
# which can be read from a file handle named DATA.
class Foo
STUFF = DATA
puts STUFF.read
end
__END__
This is the stuff!
Does Clojure have something similar?