LZW compression: Difference between revisions

Content deleted Content added
Lanky79 (talk | contribs)
PureFox (talk | contribs)
m →‎{{header|Wren}}: Changed to Wren S/H
Line 5,935:
=={{header|Wren}}==
{{trans|Kotlin}}
<syntaxhighlight lang="ecmascriptwren">class LZW {
/* Compress a string to a list of output symbols. */
static compress(uncompressed) {