Space as spacer
This commit is contained in:
parent
18abf56626
commit
511053b4ca
|
@ -23,7 +23,7 @@ walk(char *s)
|
|||
{
|
||||
char c;
|
||||
while((c = *s++))
|
||||
if(*s == ')') break;
|
||||
if(*s == ')' || *s == ' ') break;
|
||||
return s;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<> (dup ?x) (?x ?x done)
|
||||
<> (hello ?x) (bye ?x)
|
||||
<> (a (b (c))) (end)
|
||||
<> (foo ?a) (fuu ?a)
|
||||
<> (?b bar) (?b baz)
|
||||
|
||||
(hello world)
|
||||
(foo bar)
|
Loading…
Reference in New Issue