Arrays
不支持多維字元串數組 - Vyper
每當我嘗試製作字元串列表(二維數組)時,都會收到此錯誤
Multidimensional String arrays are not supported
。這是我嘗試過的程式碼:names: String[30][100]
. 有誰知道如何提供幫助?(版本 0.3.1)
我想通了,我可以使用雜湊圖。
names: HashMap[uint256, String[30]]