tracks/nim/exercises/pangram/example.nim in trackler-2.2.1.159 vs tracks/nim/exercises/pangram/example.nim in trackler-2.2.1.160
- old
+ new
@@ -1,9 +1,9 @@
import strutils
const
ascii_lowercase = {'a'..'z'}
-proc is_pangram*(sentence:string): bool =
+proc isPangram*(sentence:string): bool =
for c in ascii_lowercase:
if c notin sentence.toLowerAscii: return false
return true
\ No newline at end of file