putstr(str) { local i; i = 0; loop { if ([str + i] == 0) return; putchar([str + i]); i = i + 1; } }