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

[REBOL] Re: Returning from calendar to parent script...

From: carl:cybercraft at: 19-Apr-2002 21:25

On 19-Apr-02, Ronald Gruss wrote:
> Hi Rebolers, > How could I 'do the calendar.r script from within another script and > return to this parent script after closing 'calendar ?
I'm not sure what the calendar.r script is, but you can just do another script from within a REBOL script and when the second script ends the first script will continue on. Try running this little script from the Console... rebol [] print "Parent script running..." do %calendar.r print "Parent script running again..." HTH. -- Carl Read