├── .gitignore ├── LICENSE ├── README.markdown ├── curry.ss ├── list.ss ├── monad.ss └── reader.ss /.gitignore: -------------------------------------------------------------------------------- 1 | _darcs 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekmett/scheme-monads/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekmett/scheme-monads/HEAD/README.markdown -------------------------------------------------------------------------------- /curry.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekmett/scheme-monads/HEAD/curry.ss -------------------------------------------------------------------------------- /list.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekmett/scheme-monads/HEAD/list.ss -------------------------------------------------------------------------------- /monad.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekmett/scheme-monads/HEAD/monad.ss -------------------------------------------------------------------------------- /reader.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekmett/scheme-monads/HEAD/reader.ss --------------------------------------------------------------------------------