There are two errors in the last example in the documentation of the TIME() Built-in Function.
timestamp = date('f, '20072301', 'S') + time('f', '08:14:22', 'N')
DATE argument 1 is missing trailing single quote.
DATE argument 2, "20072301", is not in the format described by argument 3, "S".
Suggested correction:
timestamp = date('f,' '20070123', 'S') + time('f', '08:14:22', 'N')
rextry output attached
Anonymous
Hi RockFox,
thanks for reporting ... this has already been fixed in the latest 5.0 rexxref