Jake Ireland

Results 65 comments of Jake Ireland

Made some good progress tonight: at a7e63b8 the Māori test results were: ```julia Test Summary: | Pass Error Total Time Māori | 28 33 61 3.0s ``` Now (at e233741),...

Since 7b8e491, doing better still: ```julia Test Summary: | Pass Fail Error Total Time Māori | 52 6 3 61 4.1s ``` Still to do: - Implement evaluation strings for...

The primary questions I have had are: - How do you say 100? (Kotahi or kotahi rau?) What about 9,100? (Iwa mano, kotahi, or iwa mano, kotahi rau?) - Are...

Other questions: - How did Māori write before Europeans? - Consider regional differences and Elsdon Best's article on vigesimal numeration. Note also, regarding big numbers, that if you think of...

Would probably use the `digits` keyword argument: ```julia julia> round(π, digits = 4) 3.1416 ```

It would be much cleaner to use `modf` than `split`, but this may not be possible.

What about if we wrote `a + bi` as "a plus three times the imaginary unit?"

Also ```julia ordinal(n::Integer) = string(spelled_out(n), (11

I believe we also have the restriction of printing to Dec64, but no more precision than that..