[julia-users] Carriage return without new line

2014-04-23 Thread RecentConvert
I would like to periodically output a progress percentage but don't want a huge list of numbers cluttering the rest of the outputs. How can this be accomplished? print(hello) print(\rworld) This doesn't work because \r adds a new line.

Re: [julia-users] Carriage return without new line

2014-04-23 Thread Andreas Noack Jensen
Not on my machine julia print(hello);print(\rworld!) world! Which operation system and which version of Julia are you running? 2014-04-23 10:00 GMT+02:00 RecentConvert giz...@gmail.com: I would like to periodically output a progress percentage but don't want a huge list of numbers cluttering

Re: [julia-users] Carriage return without new line

2014-04-23 Thread RecentConvert
Julia Version 0.2.1 Commit e44b593* (2014-02-11 06:30 UTC) Platform Info: System: Windows (x86_64-w64-mingw32) Windows 7

Re: [julia-users] Carriage return without new line

2014-04-23 Thread Tobias Knopp
I can confirm this behavior under 0.3 prerelease on windows. The following works however julia print(hello);print(\b\b\b\b\bworld!) world! I think this should be filed as an issue at https://github.com/JuliaLang/julia Am Mittwoch, 23. April 2014 10:35:09 UTC+2 schrieb RecentConvert: Julia

Re: [julia-users] Carriage return without new line

2014-04-23 Thread RecentConvert
print(hello);print(\b\b\b\ b\bworld!) This works in the basic terminal but *not* in Julia Studio.

Re: [julia-users] Carriage return without new line

2014-04-23 Thread Tobias Knopp
Julia Studio is an entirely different issue as they might have implemented their own REPL (terminal). The issue should be reported here: https://github.com/forio/julia-studio/issues. Am Mittwoch, 23. April 2014 11:39:48 UTC+2 schrieb RecentConvert: print(hello);print(\b\b\b\ b\bworld!)

Re: [julia-users] Carriage return without new line

2014-04-23 Thread Tim Holy
Pkg.add(ProgressMeter) --Tim On Wednesday, April 23, 2014 01:00:50 AM RecentConvert wrote: I would like to periodically output a progress percentage but don't want a huge list of numbers cluttering the rest of the outputs. How can this be accomplished? print(hello) print(\rworld)

Re: [julia-users] Carriage return without new line

2014-04-23 Thread Tobias Knopp
Awesome! Did not know that. Am Mittwoch, 23. April 2014 12:22:25 UTC+2 schrieb Tim Holy: Pkg.add(ProgressMeter) --Tim On Wednesday, April 23, 2014 01:00:50 AM RecentConvert wrote: I would like to periodically output a progress percentage but don't want a huge list of numbers