Skip to content

Commit

Permalink
instruction ` is greater than, not greater than or equal
Browse files Browse the repository at this point in the history
this fixes the "bad: sgml spaces" report from mycology


git-svn-id: https://svn.parrot.org/parrot/trunk@35346 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
jquelin committed Jan 10, 2009
1 parent e77fbea commit d090f4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions languages/befunge/flow.pir
Expand Up @@ -95,12 +95,12 @@
b = stack__pop()
a = stack__pop()

if a < b goto FLOW__COMPARE__FALSE
stack__push(1)
if a > b goto FLOW__COMPARE__TRUE
stack__push(0)
.return()

FLOW__COMPARE__FALSE:
stack__push(0)
FLOW__COMPARE__TRUE:
stack__push(1)
.end


Expand Down

0 comments on commit d090f4a

Please sign in to comment.