Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ivy: remove extra blank line in print (#178)
The blank line kind of matches interactive mode, but it is annoying in a long list of debug prints. This seems wrong: % {echo 1; echo 2} >x; ivy x 1 2 % {echo print 1; echo print 2} > x; ivy x 1 1 2 2 % After this CL, there are no blank lines in the second output. Interactively, before: % {echo 1; echo 2} | ivy 1 2 % {echo print 1; echo print 2} | ivy 1 1 2 2 % After: % {echo print 1; echo print 2} | ivy 1 1 2 2 % Fixes #177.
- Loading branch information