CC++
#include
int main()
{
char *s1, *s2;
par {
s1 = "hello, ";
s2 = "world\n";
}
cout << s1 << s2 << endl;
return(0);
}
I guess I should note that hello and world are ASSIGNED in an
arbitrary order yet they will result in "hello world"
The par block means run these statements in parallel.
submitted by: wce@engr.latech.edu (william c eunice)