From 65ffafc3f8e4547b61bdda1270a82caa98f47156 Mon Sep 17 00:00:00 2001 From: slava Date: Fri, 1 Dec 2006 02:00:56 +0000 Subject: [PATCH] Missing PROVIDE: in rot13.factor --- demos/rot13.factor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/demos/rot13.factor b/demos/rot13.factor index 762b8b232d..c6a00c146a 100644 --- a/demos/rot13.factor +++ b/demos/rot13.factor @@ -13,3 +13,5 @@ USING: kernel math sequences strings ; } cond ; : rot13 ( string -- string ) [ rot-letter ] map ; + +PROVIDE: demos/rot13 ;