Remove vowels from a string: Difference between revisions

Content added Content deleted
(→‎{{header|Haskell}}: Simplified a little)
Line 1,440: Line 1,440:
'''
'''
def go(s):
def go(s):
return ''.join([
return ''.join(
c for c in s if c not in exclusions
c for c in s if c not in exclusions
])
)
return go
return go


Line 1,462: Line 1,462:
exceptGlyphs('eau')(txt)
exceptGlyphs('eau')(txt)
)
)



# MAIN ---
# MAIN ---