# demo bug where Bill doesn't see updates.
temp="""
Always Changing Table
This file updates once every minute.
Last Update: %s
|
|
| 0.0 | %f |
| 1.0 | %f |
| 2.0 | %f |
| 3.0 | %f |
| 4.0 | %f |
| 5.0 | %f |
| 6.0 | %f |
| 7.0 | %f |
| 8.0 | %f |
| 9.0 | %f |
"""
ds= accum( rand(), randn(10) )
ff= open( URL(PWD).getFile() + '/temp.htm', 'w' )
ff.write( temp % ( tuple( TimeUtil.now().toString) + tuple(ds) ) )
ff.close()