summaryrefslogtreecommitdiff
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
commit023488cde9c968df265df1bd8b2358f5c2216115 (patch)
treeb4550f39a7cc32d63262a50f23a46f4d4a76b72e /tests/hog.ur
parent993e608de4e7cea81b3ba1622142619a63b645f9 (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>