summaryrefslogtreecommitdiff
path: root/sched/test/ram.mj
diff options
context:
space:
mode:
Diffstat (limited to 'sched/test/ram.mj')
-rw-r--r--sched/test/ram.mj2
1 files changed, 1 insertions, 1 deletions
diff --git a/sched/test/ram.mj b/sched/test/ram.mj
index 7c4d1ed..5bd4f29 100644
--- a/sched/test/ram.mj
+++ b/sched/test/ram.mj
@@ -5,7 +5,7 @@ or_n<n>(a:[n],b:[n]) = (o:[n]) where
if n = 0 then
o = []
else
- o = (a[0] and b[0]).(or_n<n-1>(a[1..], b[1..]))
+ o = (a[0] or b[0]).(or_n<n-1>(a[1..], b[1..]))
end if
end where