REBOL 3 Source Code Released
rebol.com79 pointsby itsuart25 comments
*foo = 'a';
will write value of 'a' into memory at address that is in foo. type* foo;
is declaration and *foo
is dereferencing. char *foo
instead of char* foo
foo is obviously a pointer to the char, not a char. It has different size and behavior.