Determine if a string has all unique characters: Difference between revisions

m
(Added various BASIC dialects (BASIC256, Chipmunk Basi and PureBasic))
m (→‎{{header|Wren}}: Minor tidy)
 
(One intermediate revision by one other user not shown)
Line 1,462:
 
=={{header|EasyLang}}==
<syntaxhighlight lang="easylang">
func$ hex h .
for d in [ h div 16 h mod 16 ]
Line 1,490:
until s$ = "EOF"
print "'" & s$ & "'" & " length " & len s$
call unichar s$
print ""
.
Line 4,311:
{{trans|Go}}
{{libheader|Wren-fmt}}
<syntaxhighlight lang="ecmascriptwren">import "./fmt" for Conv, Fmt
 
var analyze = Fn.new { |s|
9,485

edits