Talk:Date manipulation: Difference between revisions

Content added Content deleted
(Questions on Rexx (rather ooRexx) Solution(s))
Line 55: Line 55:


should be moved to category ooRexx! May I do that? --[[User:Walterpachl|Walterpachl]] 07:50, 4 August 2012 (UTC)
should be moved to category ooRexx! May I do that? --[[User:Walterpachl|Walterpachl]] 07:50, 4 August 2012 (UTC)

:Hmmm, there is already an ooRexx solution in that Category.
:Who are the authors?
:And what's the point of isTrue and isFalse??
:I suggest these changes:
<pre>
DEL-> -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DEL-> isTrue: Procedure; Return (1 == 1)
DEL->
DEL-> -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DEL-> isFalse: Procedure; Return \isTrue()
DEL->
DEL-> -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

OLD-> !reading = isFalse()
NEW-> !reading = 0

OLD-> !reading = isFalse()
NEW-> !reading = 0

OLD-> !reading = isTrue()
NEW-> !reading = 1
</pre>
--[[User:Walterpachl|Walterpachl]] 07:53, 5 August 2012 (UTC)