aboutsummaryrefslogtreecommitdiff
path: root/monad/stack.scm
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--monad/stack.scm (renamed from data/stack.scm)6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/stack.scm b/monad/stack.scm
index d470394..8d25303 100644
--- a/data/stack.scm
+++ b/monad/stack.scm
@@ -1,7 +1,7 @@
-(define-module (data stack)
+(define-module (monad stack)
#:export (pop peek push)
- #:use-module (control monad)
- #:use-module (control monad state))
+ #:use-module (monad)
+ #:use-module (monad state))
;;; Simple stateful stack module for showing the state monad
;;; in action. These functions assume that they are in a