在 Julia 中,示例展示了如何使用元组作为函数参数。`testFunc` 函数接受位置参数 `(x, y, z)` 和关键字参数 `(a=10, b=20, c=30)`. 元组 `options` 用于传递自定义关键字参数,如 `(b=200, c=300)`。当元组跟随指定参数时,如 `testFunc(1, 2, 3; b=1000_000, options...)`,元组中的值覆盖不过指定的 `b`;反之,如 `testFunc(1, 2, 3; options..., b=1000_000)`,则元组后的参数覆盖元组内的 `b`。