world
New()
log = file("Log.htm")
log += "World opened at [time2text(timeofday())]"
Del()
log << "World closed at [time2text(world.timeofday())]"
Problem description:
It doesn't like my proc inside the "time2text" proc
I tried a lot of things here: I tried using both timeofday and realtime, I tried putting "world." before them both (even though I shouldn't need it), and I tried changing += to >> but that didn't help either. I also tried taking out time2text because I wasn't sure if I needed it or not.
I'm not sure why, but you do need the world accessor in front of timeofday. I'm sure someone else will explain why.
P_S