Martin Bravenboer
Martin Bravenboer
Example: ``` julia> parse(Int64, " 5 ") 5 julia> parse(FixedDecimal{Int64,2}, " 5.0 ") ERROR: ArgumentError: invalid digit: ' ' julia> parse(FixedDecimal{Int64,2}, "5.0") FixedDecimal{Int64,2}(5.00) julia> parse(Float64, " 3.14 ") 3.14 julia>...
## Option At this point in the text, reading linearly, universes have not yet been introduced and I could not figure out what this syntax meant (the `: Type`) and...
Thanks a lot for the book. I've really enjoyed working through it so far and the quality is great. I had a couple of things that slightly confused me, maybe...