aboutsummaryrefslogtreecommitdiff
path: root/examples/palindrome.fusp
diff options
context:
space:
mode:
authorCamil Staps2016-10-14 22:17:27 +0200
committerCamil Staps2016-10-14 22:17:27 +0200
commitcf5c69b1be1bf23a630751806ec0c32247aa48e7 (patch)
tree6232203ed63fdee4c8b47c8cb96ab20735d1e013 /examples/palindrome.fusp
parenttoken_list using an array for memory efficiency (diff)
Minor example updates
Diffstat (limited to 'examples/palindrome.fusp')
-rw-r--r--examples/palindrome.fusp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/palindrome.fusp b/examples/palindrome.fusp
index d2c6eba..c6a6f93 100644
--- a/examples/palindrome.fusp
+++ b/examples/palindrome.fusp
@@ -6,4 +6,4 @@ is_palindrome [] = 1;
is_palindrome [_:[]] = 1;
is_palindrome [x:xs] = if (eq x (last xs)) (is_palindrome (init xs)) 0;
-main = is_palindrome [0:[42:[37:[42:[0:[]]]]]];
+main = is_palindrome [0,42,37,42,0];