Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Return of a function

From: lmecir:mbox:vol:cz at: 19-Apr-2002 11:11

Hi Philippe, try instead: heure: "12.01" heure: transfo-time heure ----- Original Message ----- Hi, I really need to understand why the return of this function doesn't work. transfo-time: func [hm] [ hm: parse hm "." hm/1: to-integer hm/1 hm/2: to-integer hm/2 hm: to-time join hm/1 [":" hm/2] hm ] heure: "12.01" transo-time heure heure: hm print heure; nothing is print.. heure has no value now.. why ???