git @ Cat's Eye Technologies Oxcart / 6b458ae
Add whitespace to avoid compiler warning with recent ghc. Chris Pressey 1 year, 2 months ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
5252 decr st k = let (Just (Num n), st') = pop st in k $ push (Num (n-1)) st'
5353 dup st k = let (Just v, st') = pop st in k $ push v $ push v st'
5454 pop' st k = let (Just v, st') = pop st in k st'
55 swap st k = let (a, b, st') = popTwo st in k $ push b $push a st'
55 swap st k = let (a, b, st') = popTwo st in k $ push b $ push a st'
5656
5757 left st k = k $ shift (-1) st
5858 right st k = k $ shift 1 st