Pangram checker: Difference between revisions

Content added Content deleted
(Add VTL-2)
(→‎{{header|Frink}}: Simplified Frink)
Line 1,824: Line 1,824:
{
{
charSet = toSet[charList[lc[s]]]
charSet = toSet[charList[lc[s]]]
for c = char["a"] to char["z"]
for c = "a" to "z"
if ! charSet.contains[char[c]]
if ! charSet.contains[c]
return false
return false