On Fri, Jul 17, 2015 at 10:46 PM, Brandon Taylor <[email protected]> wrote: > Yes, that works much better. Is the semicolon necessary for splatting key > word arguments?
Yes, otherwise the splatting is treated as positional argument. Also see here[1] for more detail about keyword arguments. e.g. > An explicit semicolon is required only for passing varargs or computed > keywords as described below. [1] http://julia.readthedocs.org/en/latest/manual/functions/#keyword-arguments
