putstr(str) { local tmp = str; if (str == NULL) { putstr("(null)"); return NULL; } loop { if ([tmp] == 0) return str; putchar([tmp]); tmp++; } }