Clean is a general purpose, purely functional, lazy programming language created in the year 1987. It achieves referential transparency using a world type in conjunction with uniqueness typing. It was one of the inspirations of the haskell programming language. Homepage Wikipedia article
160
votes
8answers
5k views
How can a time function exist in functional programming?
I've to admit that I don't know much about functional programming. I read about it from here and there, and so came to know that in functional programming, a function returns the same output, for same ...
3
votes
3answers
2k views
The Clean programming language in the real world?
Are there any real world applications written in the clean programming language? Either open-source or proprietary.
URL: http://clean.cs.ru.nl/
2
votes
1answer
52 views
How to list the files of a directory in Clean
I need to list all files of a directory using the Clean programming language, but I don't know any function to do so. Can someone help me?