diff options
author | Adam Chlipala <adam@chlipala.net> | 2010-12-12 10:35:04 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2010-12-12 10:35:04 -0500 |
commit | 805a3eda8adf0482ea539dadc7e6c745056a04a8 (patch) | |
tree | b4550f39a7cc32d63262a50f23a46f4d4a76b72e /tests | |
parent | 6cd100d1ca2603d57ffd6a05763ca2de18554a97 (diff) |
Change Basis.debug to use the protocol's debug function
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hog.ur | 4 |
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> |