aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/hog.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2010-12-12 10:35:04 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2010-12-12 10:35:04 -0500
commit805a3eda8adf0482ea539dadc7e6c745056a04a8 (patch)
treeb4550f39a7cc32d63262a50f23a46f4d4a76b72e /tests/hog.ur
parent6cd100d1ca2603d57ffd6a05763ca2de18554a97 (diff)
Change Basis.debug to use the protocol's debug function
Diffstat (limited to 'tests/hog.ur')
-rw-r--r--tests/hog.ur4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/hog.ur b/tests/hog.ur
index 419d202d..cd666cbe 100644
--- a/tests/hog.ur
+++ b/tests/hog.ur
@@ -4,4 +4,6 @@ fun more n =
else
more (n-1) ^ more (n-1)
-fun main n = return <xml>{[more n]}</xml>
+fun main n =
+ debug "Let's give this a try....";
+ return <xml>{[more n]}</xml>