def my_method(options = {})
# ...
end
# => Syntax error in ./src/auto_harvest.cr:17: for empty hashes use '{} of KeyType => ValueType'
虽然这是有效的 Ruby,但它似乎不在 Crystal 中,我怀疑这是因为打字。如何告诉编译器我想默认为空哈希?
def my_method(options = {})
# ...
end
# => Syntax error in ./src/auto_harvest.cr:17: for empty hashes use '{} of KeyType => ValueType'
虽然这是有效的 Ruby,但它似乎不在 Crystal 中,我怀疑这是因为打字。如何告诉编译器我想默认为空哈希?