what does run() do?
Posted: Sun Jul 15, 2007 3:18 pm
What exactly happens when you call "run()"?
Does it automatically call "finitialize()?" Because it seems to be behaving like it is doing that...
my code looks like this:
I get an output that looks like:
test
test
rather than the single "test" that I would have expected...
Does it automatically call "finitialize()?" Because it seems to be behaving like it is doing that...
my code looks like this:
Code: Select all
fin = FInitializeHandler ("func()")
proc func () {
print "test"
}
finitialize()
run()
test
test
rather than the single "test" that I would have expected...