Skip to content

Instantly share code, notes, and snippets.

@iArnold
Created October 23, 2015 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iArnold/37463cb636b6e1d2d952 to your computer and use it in GitHub Desktop.
Save iArnold/37463cb636b6e1d2d952 to your computer and use it in GitHub Desktop.
comment {
Code By Rebolek
"It's a terrible version, that I use just for short strings, so it's certainly very unoptimalized, but here you go:"
Thank you for sharing!
}
rejoin: func [
"Crude REJOIN version, because I can't live without it"
block [block!]
/local
string [string!]
] [
string: make string! 300 ; good enough for my requirements
block: reduce block
foreach value block [append string form value]
string
]
@iArnold
Copy link
Author

iArnold commented Dec 8, 2016

As Rejoin is now added to Red repository as a mezzanine this Gist has become obsolete

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment