I'm playing with dhall and wondered how I can implement a string splitting function of the form
λ(text: Text) -> λ(delimiter: Text) -> List Text
However, it appears dhall has no concept/type to represent individual characters. and there's no such function in the Prelude.
The only thing you can do with Text values is concatenate them
So... is it even possible?