SPC  Version 0.9.5
 All Files Functions Groups Pages
ex_write.spc

This is an example of how to use the write function.

task main()
{
int x = Timer1;
open("w");
write(x);
close();
}