SPC  Version 0.9.5
 All Files Functions Groups Pages
ex_close.spc

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

task main()
{
open("r");
int x = read();
printf("x = %d\n", x);
close();
}