On 25 November 2014 at 15:01, Ronald L. Rivest <[email protected]> wrote:
>
> There is an apparent bug (or family of bugs) in the
> documentation "julia.pdf".
>
> The document says unsigned integer is of type UInt,
> while the julia system only accepts Uint
> (lowercase "i" instead of uppercase "I").
>
> This holds for UInt64/Uint64, etc...
>
> The documentation should be fixed... (or the implementation
> made to be in accordance with the documentation...)

Which version of Julia are you running?  My guess is that you are
referring to the development version documentation [1], when what you
really want is the 0.3.x release documentation [2]

    > julia0.4 -e 'UInt'
    > julia0.3 -e 'UInt'
    ERROR: UInt not defined
     in process_options at ./client.jl:213
     in _start at ./client.jl:354
     in _start_3B_1729 at ~/git/julia0.3/usr/bin/../lib/julia/sys.so
    > julia0.4 -e 'Uint'
    > julia0.3 -e 'Uint'

As seen above, there has been some breaking changes introduced in the
development branch.

    Pontus

[1]: https://media.readthedocs.org/pdf/julia/latest/julia.pdf
[2]: https://media.readthedocs.org/pdf/julia/release-0.3/julia.pdf

Reply via email to