Talk:Short-circuit evaluation: Difference between revisions

From Rosetta Code
Content added Content deleted
(task error?)
 
Line 5: Line 5:
y = a(i) or b(j)</pre>
y = a(i) or b(j)</pre>
Either the definition of the first example is wrong. I'm guessing the task description but ... --[[User:Dgamey|Dgamey]] 17:50, 24 July 2010 (UTC)
Either the definition of the first example is wrong. I'm guessing the task description but ... --[[User:Dgamey|Dgamey]] 17:50, 24 July 2010 (UTC)

: You are right of course. Hopefully fixed now, thanks. --[[User:Paddy3118|Paddy3118]] 23:43, 24 July 2010 (UTC)

Revision as of 23:43, 24 July 2010

Error in task?

The problem states:

  x = a(i) and b(j)
  y = a(j) or  b(j)

But the only example is written as:

  x = a(i) and b(j)
  y = a(i) or  b(j)

Either the definition of the first example is wrong. I'm guessing the task description but ... --Dgamey 17:50, 24 July 2010 (UTC)

You are right of course. Hopefully fixed now, thanks. --Paddy3118 23:43, 24 July 2010 (UTC)