Change e letters to i in words: Difference between revisions

Content added Content deleted
m (→‎{{header|Wren}}: Minor tidy)
Line 2,280: Line 2,280:
{{libheader|Wren-sort}}
{{libheader|Wren-sort}}
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
<syntaxhighlight lang="ecmascript">import "io" for File
<syntaxhighlight lang="wren">import "io" for File
import "/sort" for Find
import "./sort" for Find
import "/fmt" for Fmt
import "./fmt" for Fmt


var wordList = "unixdict.txt" // local copy
var wordList = "unixdict.txt" // local copy
Line 2,327: Line 2,327:
26: welles -> willis
26: welles -> willis
</pre>
</pre>

=={{header|XPL0}}==
=={{header|XPL0}}==
<syntaxhighlight lang="xpl0">string 0; \use zero-terminated strings
<syntaxhighlight lang="xpl0">string 0; \use zero-terminated strings