[Tutor] Refreshing a script

dman dsh8290@rit.edu
Mon, 30 Jul 2001 12:27:37 -0400


On Mon, Jul 30, 2001 at 05:06:37PM +0100, Patrick Kirk wrote:
| Hi all,
| 
| If I write a script and them import it its functions are available as
| script.function()
| 
| But how can I refresh this if I then edit the script?

reload( script )

(or restart the interpreter)

-D