defmodule Monad do @type monad :: any @callback return(any) :: monad @callback bind(monad, (any -> monad)) :: monad end