3
我注意到我可以在nimrod中聲明元組而不用爲每個字段命名。例如:沒有字段名稱的元組
type T1 = tuple[string, age: int]
type T2 = tuple[char, string, age: int]
但這並不適用於最後提交
type T3 = tuple[string, int] # compilation error
這是爲什麼?這是打算?爲什麼最後一個字段總是被命名?