Minor cleanup.
This commit is contained in:
parent
bb41bf619d
commit
288142c01a
|
|
@ -203,7 +203,6 @@ print_list(struct list_node* el)
|
||||||
printf(" ");
|
printf(" ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -226,5 +225,6 @@ main(void)
|
||||||
el = push_integer_from_str("3141592653589793238462643383279502884", 0);
|
el = push_integer_from_str("3141592653589793238462643383279502884", 0);
|
||||||
el->tail = text_to_expression(text);
|
el->tail = text_to_expression(text);
|
||||||
print_list(el);
|
print_list(el);
|
||||||
|
printf("\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue