LZW compression: Difference between revisions

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