Re: [julia-users] Implementing printf() and sprintf() in Julia.

2015-09-28 Thread Daniel Carrera
I just created a pull request. I hope I got it right. This is the first time I use the pull-request feature at Github. https://github.com/JuliaLang/Formatting.jl/pull/15 Daniel. On 28 September 2015 at 07:03, Kevin Squire wrote: > How about submitting a patch to

Re: [julia-users] Implementing printf() and sprintf() in Julia.

2015-09-27 Thread Kevin Squire
How about submitting a patch to Formatting.jl? On Sunday, September 27, 2015, Michael Hatherly wrote: > As mentioned in the other thread, > https://groups.google.com/d/msg/julia-users/hBbEGEopi0A/OX4ZEhFnBgAJ and >

[julia-users] Implementing printf() and sprintf() in Julia.

2015-09-27 Thread Daniel Carrera
Hello, I made a trivial change to a some clever code by Tim Holy, and used it to make printf() and sprintf() function with the familiar syntax that we know from C/C++ (requires Julia 0.4): immutable FormatString{S} end FormatString(str::AbstractString) = FormatString{symbol(str)} @generated