blob: e8df1b9afb9e650216760d9875e6c690b0390ca8 [file] [log] [blame]
void main(void)
{
static const char msg[] = "hello world\r\n";
char *str;
char ch;
str = msg;
do {
ch = *str++;
} while(ch);
}